mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
fitimage.bbclass: Remove True option to getVar calls
getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Signed-off-by: Akash Hadke <akash.hadke27@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
f6b497721b
commit
59614eafb0
@ -288,7 +288,7 @@ def fitimage_emit_subsection_signature(d, fd, sign_images_list):
|
||||
def fitimage_emit_section_config(d, fd, dtb, kernelcount, ramdiskcount, setupcount, bootscriptid, compatible, dtbcount):
|
||||
sign = d.getVar("FITIMAGE_SIGN")
|
||||
conf_default = None
|
||||
conf_prefix = d.getVar('FITIMAGE_CONFIG_PREFIX', True) or ""
|
||||
conf_prefix = d.getVar('FITIMAGE_CONFIG_PREFIX') or ""
|
||||
|
||||
bb.note(f"Adding {dtb} section to ITS file")
|
||||
|
||||
@ -302,7 +302,7 @@ def fitimage_emit_section_config(d, fd, dtb, kernelcount, ramdiskcount, setupcou
|
||||
if bootscriptid:
|
||||
conf_desc += ", u-boot script"
|
||||
if dtbcount == 1:
|
||||
conf_default = d.getVar('FITIMAGE_DEFAULT_CONFIG', True) or f'{conf_prefix}{dtb}'
|
||||
conf_default = d.getVar('FITIMAGE_DEFAULT_CONFIG') or f'{conf_prefix}{dtb}'
|
||||
|
||||
if conf_default:
|
||||
fd.write(f'\t\tdefault = "{conf_default}";\n')
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user