From 26e480a6e0af58d23f40144fb241ceb610abf2b4 Mon Sep 17 00:00:00 2001 From: Lucien Mueller Date: Tue, 24 Aug 2021 13:12:36 +0200 Subject: [PATCH] netmodule-fitimage: do_assemble_fitimage is now run before the do_deploy step. BugzID: 74417 Signed-off-by: Lucien Mueller --- recipes-kernel/linux/netmodule-fitimage.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipes-kernel/linux/netmodule-fitimage.bb b/recipes-kernel/linux/netmodule-fitimage.bb index a5cd85c..b4ed3d0 100644 --- a/recipes-kernel/linux/netmodule-fitimage.bb +++ b/recipes-kernel/linux/netmodule-fitimage.bb @@ -9,7 +9,9 @@ inherit kernel-arch inherit deploy do_configure[depends] += "virtual/kernel:do_deploy" -do_bundle_initramfs[depends] += "${INITRAMFS_IMAGE}:do_image_complete" +do_bundle_initramfs[depends] += "${INITRAMFS_IMAGE}:do_image_complete" +do_deploy[depends] += "${PN}:do_assemble_fitimage" + KERNEL_IMAGETYPES = "fitImage" PACKAGE_ARCH = "${MACHINE_ARCH}"