From 482d864b8f1af84915ed6a9641e80af4e49a1f63 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Mon, 25 Sep 2023 14:46:50 -0600 Subject: [PATCH] rpi-base: Fix wic image kernel dependency wic images depend on the kernel device trees, and therefore should depend on virtual/kernel:do_deploy to make sure these are present in the deploy directory. Most of the time, this dependency is satisfied indirectly since a rootfs image will depend on the kernel, but add it explicitly for the cases where it is not. Signed-off-by: Joshua Watt --- conf/machine/include/rpi-base.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/machine/include/rpi-base.inc b/conf/machine/include/rpi-base.inc index 895fcfe13..64f60ab1e 100644 --- a/conf/machine/include/rpi-base.inc +++ b/conf/machine/include/rpi-base.inc @@ -149,6 +149,7 @@ IMAGE_BOOT_FILES ?= "${BOOTFILES_DIR_NAME}/* \ ${RPI_EXTRA_IMAGE_BOOT_FILES} \ " do_image_wic[depends] += " \ + virtual/kernel:do_deploy \ rpi-bootfiles:do_deploy \ ${@bb.utils.contains('RPI_USE_U_BOOT', '1', 'u-boot:do_deploy', '',d)} \ "