mirror of
https://git.yoctoproject.org/poky
synced 2026-04-13 14:02:21 +02:00
systemd-boot-cfg.bbclass: Don't reference or set OVERRIDES
There's no need to add to the local copy of overrides and then not do anything with it. Now that this function is being used in package creation it was causing sstate issues as well, as MACHINE is always in OVERRIDES, so something trivial such as the name of the MACHINE would cause the hash to change. (From OE-Core rev: 24ddc80fc39291d9952b8e3bd37d66c1c4376e6b) Signed-off-by: California Sullivan <california.l.sullivan@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
3449ae0f5d
commit
5e039c33d9
@@ -39,10 +39,6 @@ python build_efi_cfg() {
|
||||
for label in labels.split():
|
||||
localdata = d.createCopy()
|
||||
|
||||
overrides = localdata.getVar('OVERRIDES')
|
||||
if not overrides:
|
||||
bb.fatal('OVERRIDES not defined')
|
||||
|
||||
entryfile = "%s/%s.conf" % (s, label)
|
||||
if not os.path.exists(s):
|
||||
os.makedirs(s)
|
||||
@@ -51,7 +47,6 @@ python build_efi_cfg() {
|
||||
entrycfg = open(entryfile, "w")
|
||||
except OSError:
|
||||
bb.fatal('Unable to open %s' % entryfile)
|
||||
localdata.setVar('OVERRIDES', label + ':' + overrides)
|
||||
|
||||
entrycfg.write('title %s\n' % label)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user