diff options
author | Christopher Larson <chris_larson@mentor.com> | 2020-12-10 13:28:27 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-12-15 22:51:56 +0000 |
commit | 8076683457aabb2b965dcdf9946848491f879613 (patch) | |
tree | cd7cd059931785da7d434a593b8872695d5402c3 /meta/classes/uboot-extlinux-config.bbclass | |
parent | 13412b60bb91e184e7a0135a9024e4db5d7d648e (diff) | |
download | poky-8076683457aabb2b965dcdf9946848491f879613.tar.gz |
uboot-extlinux-config: exclude OVERRIDES from do_create_extlinux_config vardeps
This function is primarily *appending* configuration entries to the
overrides, it only gets it to ensure it's set at all, so doesn't belong
in the vardeps. Having a dependency on OVERRIDES means you cannot use a
bbclass like distrooverrides without changing the signatures of recipes
using this class.
(From OE-Core rev: fef74d3651d432977caef8fea54fc54bf2784a74)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/uboot-extlinux-config.bbclass')
-rw-r--r-- | meta/classes/uboot-extlinux-config.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/uboot-extlinux-config.bbclass b/meta/classes/uboot-extlinux-config.bbclass index f4bf94be04..be285daa01 100644 --- a/meta/classes/uboot-extlinux-config.bbclass +++ b/meta/classes/uboot-extlinux-config.bbclass | |||
@@ -153,5 +153,6 @@ python do_create_extlinux_config() { | |||
153 | } | 153 | } |
154 | UBOOT_EXTLINUX_VARS = "CONSOLE MENU_DESCRIPTION ROOT KERNEL_IMAGE FDTDIR FDT KERNEL_ARGS INITRD" | 154 | UBOOT_EXTLINUX_VARS = "CONSOLE MENU_DESCRIPTION ROOT KERNEL_IMAGE FDTDIR FDT KERNEL_ARGS INITRD" |
155 | 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()])}" | 155 | 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()])}" |
156 | do_create_extlinux_config[vardepsexclude] += "OVERRIDES" | ||
156 | 157 | ||
157 | addtask create_extlinux_config before do_install do_deploy after do_compile | 158 | addtask create_extlinux_config before do_install do_deploy after do_compile |