From c7b9fb5b26fffaea26febf031395aade3fbd613e Mon Sep 17 00:00:00 2001 From: Dmitry Baryshkov Date: Fri, 3 Nov 2023 20:08:42 +0300 Subject: [PATCH] linux-qcom-bootimg: declare variable dependency The do_qcom_img_deploy function references several variables (and flags) in a way that is not visible to bitbake. Declare vardeps manually to let bitbake know it and reschedule the function if one of variables changes. Signed-off-by: Dmitry Baryshkov --- recipes-kernel/linux/linux-qcom-bootimg.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes-kernel/linux/linux-qcom-bootimg.inc b/recipes-kernel/linux/linux-qcom-bootimg.inc index c321926..e40d196 100644 --- a/recipes-kernel/linux/linux-qcom-bootimg.inc +++ b/recipes-kernel/linux/linux-qcom-bootimg.inc @@ -130,6 +130,7 @@ python do_qcom_img_deploy() { } do_qcom_img_deploy[depends] += "skales-native:do_populate_sysroot" +do_qcom_img_deploy[vardeps] = "QCOM_BOOTIMG_PAGE_SIZE QCOM_BOOTIMG_KERNEL_BASE KERNEL_CMDLINE_EXTRA QCOM_BOOTIMG_ROOTFS" addtask qcom_img_deploy after do_populate_sysroot do_packagedata bundle_initramfs before do_deploy