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:
Akash Hadke 2025-01-10 16:35:01 +05:30 committed by Khem Raj
parent f6b497721b
commit 59614eafb0
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -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')