From 0731d371cb9582e6045e6cbcdecc38aad8d88337 Mon Sep 17 00:00:00 2001 From: Ziad Elhanafy Date: Mon, 17 Jul 2023 14:32:04 -0500 Subject: [PATCH] arm/classes: Remove IMAGE_NAME_SUFFIX from image path Remove IMAGE_NAME_SUFFIX from image path in wic_nopt.bblass Signed-off-by: Ziad Elhanafy Signed-off-by: Jon Mason --- meta-arm/classes/wic_nopt.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm/classes/wic_nopt.bbclass b/meta-arm/classes/wic_nopt.bbclass index 9c78fd77..529bf138 100644 --- a/meta-arm/classes/wic_nopt.bbclass +++ b/meta-arm/classes/wic_nopt.bbclass @@ -6,4 +6,4 @@ IMAGE_TYPES:append = " wic.nopt" CONVERSIONTYPES += "nopt" # 1024 bytes are skipped which corresponds to the size of the partition table header to remove -CONVERSION_CMD:nopt = "tail -c +1025 ${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type} > ${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type}.nopt" +CONVERSION_CMD:nopt = "tail -c +1025 ${IMAGE_NAME}.${type} > ${IMAGE_NAME}.${type}.nopt"