]> code.ossystems Code Review - openembedded-core.git/commitdiff
grub-efi-cfg: exclude OVERRIDES from build_efi_cfg vardeps
authorChristopher Larson <chris_larson@mentor.com>
Thu, 10 Dec 2020 20:28:26 +0000 (13:28 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 15 Dec 2020 22:45:24 +0000 (22:45 +0000)
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>
meta/classes/grub-efi-cfg.bbclass

index 3a2cdd698beb955a5f0bbe1bde5b6f8ee30e5883..ea21b3de3d8c324fe6eca59e93a8bffc3ba072b2 100644 (file)
@@ -120,3 +120,4 @@ python build_efi_cfg() {
 
     cfgfile.close()
 }
+build_efi_cfg[vardepsexclude] += "OVERRIDES"