From aa030228732392d81bab7ed297c68eeaa28c0175 Mon Sep 17 00:00:00 2001 From: Michal Toman Date: Wed, 8 Jan 2025 08:58:21 +0100 Subject: [PATCH] balena-image-flasher: depend on balena-image:do_image_complete At this moment balena-image-flasher depends on do_image_sign_digest and do_rootfs of balena-image, but this is not enough, as the signature symlink is only created by a postprocess script. This patch replaces the two existing dependencies by do_image_complete, which should cover everything. Change-type: patch Signed-off-by: Michal Toman --- meta-balena-common/recipes-core/images/balena-image-flasher.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-balena-common/recipes-core/images/balena-image-flasher.bb b/meta-balena-common/recipes-core/images/balena-image-flasher.bb index 0188d5bb45..f26962bc70 100644 --- a/meta-balena-common/recipes-core/images/balena-image-flasher.bb +++ b/meta-balena-common/recipes-core/images/balena-image-flasher.bb @@ -13,7 +13,7 @@ IMAGE_FSTYPES = "balenaos-img" BALENA_ROOT_FSTYPE = "ext4" # Make sure you have the resin image ready -do_image_balenaos_img[depends] += "balena-image:do_rootfs balena-image:do_sign_digest" +do_image_balenaos_img[depends] += "balena-image:do_image_complete" # Ensure we have the raw balena image ready in DEPLOY_DIR_IMAGE do_image[depends] += "balena-image:do_image_complete"