summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Larson <chris_larson@mentor.com>2020-12-10 13:28:26 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-12-15 22:45:24 +0000
commit8fad5db8c3275a0dc9fdb37761f2e9381e1413da (patch)
treee6a1776549ab2b9f9c0f0bfdf564d50b9489b20d
parenta7bd1c3ca4d2f8a5e230b19517af1c52aec35f3e (diff)
downloadopenembedded-core-contrib-8fad5db8c3275a0dc9fdb37761f2e9381e1413da.tar.gz
grub-efi-cfg: exclude OVERRIDES from build_efi_cfg 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. Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/grub-efi-cfg.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/grub-efi-cfg.bbclass b/meta/classes/grub-efi-cfg.bbclass
index 3a2cdd698b..ea21b3de3d 100644
--- a/meta/classes/grub-efi-cfg.bbclass
+++ b/meta/classes/grub-efi-cfg.bbclass
@@ -120,3 +120,4 @@ python build_efi_cfg() {
cfgfile.close()
}
+build_efi_cfg[vardepsexclude] += "OVERRIDES"