mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 01:40:07 +00:00
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. (From OE-Core rev: ad792edf61157f6cd63a2c6aa8e53edc134301d0) Signed-off-by: Matt Madison <matt@madison.systems> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
8293060f8e
commit
d967e6d6f2
@@ -148,5 +148,7 @@ python do_create_extlinux_config() {
|
|||||||
except OSError:
|
except OSError:
|
||||||
bb.fatal('Unable to open %s' % (cfile))
|
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
|
addtask create_extlinux_config before do_install do_deploy after do_compile
|
||||||
|
|||||||
Reference in New Issue
Block a user