From 59614eafb056ba139d1d68cc635ecc19e3b81c2a Mon Sep 17 00:00:00 2001 From: Akash Hadke Date: Fri, 10 Jan 2025 16:35:01 +0530 Subject: 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 Signed-off-by: Khem Raj --- meta-oe/classes/fitimage.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/classes/fitimage.bbclass b/meta-oe/classes/fitimage.bbclass index ebd034883b..fef8974187 100644 --- a/meta-oe/classes/fitimage.bbclass +++ b/meta-oe/classes/fitimage.bbclass @@ -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') -- cgit v1.2.3-54-g00ecf