diff --git a/layers/meta-nwl-distro/classes/nwl-image-fitimage.bbclass b/layers/meta-nwl-distro/classes/nwl-image-fitimage.bbclass index e272220..7fc7e2a 100644 --- a/layers/meta-nwl-distro/classes/nwl-image-fitimage.bbclass +++ b/layers/meta-nwl-distro/classes/nwl-image-fitimage.bbclass @@ -99,9 +99,9 @@ def get_nwl_fitimage_ci_artifacts(d): # If an initramfs is used, publish the fitImage that contains it # otherwise the image without an initramfs if initramfs.strip() != "": - return "fitImage-${INITRAMFS_IMAGE_NAME}-${KERNEL_FIT_LINK_NAME}${KERNEL_FIT_BIN_EXT}" + return "fitImage-${INITRAMFS_IMAGE_NAME}-${KERNEL_FIT_LINK_NAME}" else: - return "fitImage-linux.bin-${KERNEL_FIT_LINK_NAME}${KERNEL_FIT_BIN_EXT}" + return "fitImage-linux.bin-${KERNEL_FIT_LINK_NAME}" # Add the generated fitImage to the list of artifacts to publish in the CI COREOS_CI_DEPLOY_ARTIFACTS += "${@get_nwl_fitimage_ci_artifacts(d)}"