From: Richard Purdie Date: Sun, 2 Aug 2026 21:27:31 +0000 (+0100) Subject: qemuboot: Correct task dependency tree X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e2a45871962c9e44b2ae04dc1f09ee8d634170f;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git qemuboot: Correct task dependency tree If we're writing to IMGDEPLOYDIR we need to do it between do_image and do_image_complete. Signed-off-by: Richard Purdie --- diff --git a/meta/classes-recipe/qemuboot.bbclass b/meta/classes-recipe/qemuboot.bbclass index d1794c7899..72cad65adb 100644 --- a/meta/classes-recipe/qemuboot.bbclass +++ b/meta/classes-recipe/qemuboot.bbclass @@ -127,7 +127,7 @@ QB_DRIVE_TYPE ?= "/dev/sd" inherit image-artifact-names # Create qemuboot.conf -addtask do_write_qemuboot_conf after do_rootfs before do_image +addtask do_write_qemuboot_conf after do_image before do_image_complete do_write_qemuboot_conf[depends] += "${@ '' if bb.utils.to_boolean(d.getVar('INITRAMFS_IMAGE_BUNDLE')) else (d.getVar('KERNEL_DEPLOY_DEPEND') or '')}" def qemuboot_vars(d):