From ad792edf61157f6cd63a2c6aa8e53edc134301d0 Mon Sep 17 00:00:00 2001 From: Matt Madison Date: Sun, 3 Mar 2019 05:31:42 -0800 Subject: uboot-extlinux-config.bbclass: add missing variable dependencies do_create_extlinux_config performs its own override processing for several variables, so we have to explicitly add the label- suffixed variable names to its vardeps to make sure that changes get detected. Signed-off-by: Matt Madison Signed-off-by: Richard Purdie --- meta/classes/uboot-extlinux-config.bbclass | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/classes/uboot-extlinux-config.bbclass b/meta/classes/uboot-extlinux-config.bbclass index c65c421b60..b5b1a81dfc 100644 --- a/meta/classes/uboot-extlinux-config.bbclass +++ b/meta/classes/uboot-extlinux-config.bbclass @@ -148,5 +148,7 @@ python do_create_extlinux_config() { except OSError: bb.fatal('Unable to open %s' % (cfile)) } +UBOOT_EXTLINUX_VARS = "CONSOLE MENU_DESCRIPTION ROOT KERNEL_IMAGE FDTDIR FDT KERNEL_ARGS INITRD" +do_create_extlinux_config[vardeps] += "${@' '.join(['UBOOT_EXTLINUX_%s_%s' % (v, l) for v in d.getVar('UBOOT_EXTLINUX_VARS').split() for l in d.getVar('UBOOT_EXTLINUX_LABELS').split()])}" addtask create_extlinux_config before do_install do_deploy after do_compile -- cgit 1.2.3-korg