Hi @ToradexAI,
After modifying the updates in uboot bbappend file I have got an error issue like this,
Updated Recipes-BSP Uboot bbappend File:
hari@Administrator:~/oe-core/layers/meta-lokbest/recipes-bsp/u-boot$ cat u-boot-toradex_%.bbappend
FILESEXTRAPATHS:prepend := "${THISDIR}/files:"
SRC_URI += "\
file://disable-console-logs.patch \
"
do_configure:append() {
# Set boot delay to 0 for fast boot
if grep -q "#define CONFIG_BOOTDELAY" ${S}/include/configs/verdin-imx8mp.h; then
sed -i 's/#define CONFIG_BOOTDELAY.*[0-9]/#define CONFIG_BOOTDELAY 0/' ${S}/include/configs/verdin-imx8mp.h
else
echo "#define CONFIG_BOOTDELAY 0" >> ${S}/include/configs/verdin-imx8mp.h
fi
# Modify setupargs to remove console=tty1
if grep -q "console=tty1" ${S}/include/configs/verdin-imx8mp.h; then
sed -i 's/console=tty1 console=/console=/' ${S}/include/configs/verdin-imx8mp.h
fi
# Override setupargs to remove console=tty1
if ! grep -q '"setupargs=console=${console}\\0"' ${S}/include/configs/verdin-imx8mp.h; then
sed -i '/tdxargs=/a\\t"setupargs=console=${console}\\0" \\' ${S}/include/configs/verdin-imx8mp.h
fi
# Override the setup command to exclude console=tty1
if ! grep -q "setup=setenv setupargs console=" ${S}/include/configs/verdin-imx8mp.h; then
sed -i '/tdxargs=/a\\t"setup=setenv setupargs console=${console}\\0" \\' ${S}/include/configs/verdin-imx8mp.h
fi
# Add tdxargs for console configuration if not already present
if ! grep -q "tdxargs=" ${S}/include/configs/verdin-imx8mp.h; then
sed -i '/initrd_high=0xffffffffffffffff\\0/a\\t"tdxargs=quiet loglevel=0 vt.global_cursor_default=0 vt.default_redraw=0 consoleblank=0\\0" \\' ${S}/include/configs/verdin-imx8mp.h
fi
# Remove existing fdtfile, if there is one
sed -i '/"fdtfile=.*\\0" \\/d' ${S}/include/configs/verdin-imx8mp.h
# Add new fdtfile for Ivy carrier board
sed -i 's/\("fdt_board=.*\\0" \\\)/\0\n "fdtfile=imx8mp-verdin-wifi-ivy.dtb\\0" \\/' ${S}/include/configs/verdin-imx8mp.h
# Remove existing bootcmd_mmc1 and bootcmd_mmc2 definitions
sed -i '/bootcmd_mmc1=devnum=1; run mmc_boot/d' ${S}/include/configs/verdin-imx8mp.h
sed -i '/bootcmd_mmc2=devnum=2; run mmc_boot/d' ${S}/include/configs/verdin-imx8mp.h
# Add custom environment variables before the closing quote
sed -i '/update_uboot=.*fi\\0"/a\\
"bootfs_a_part=1\\0" \\\
"bootfs_b_part=2\\0" \\\
"rootfs_a_part=3\\0" \\\
"rootfs_b_part=4\\0" \\\
"rootfs_r_part=7\\0" \\\
"active_bootfs=A\\0" \\\
"active_rootfs=A\\0" \\\
"recovery_rootfs=\\0" \\\
"ota_update=\\0" \\\
"select_bootfs=if test \\"${active_bootfs}\\" = \\"B\\"; then setenv distro_bootpart ${bootfs_b_part}; else setenv distro_bootpart ${bootfs_a_part}; fi\\0" \\\
"select_rootfs=setenv root_part; if test \\"${recovery_rootfs}\\" = \\"R\\"; then if part uuid mmc ${devnum}:${rootfs_r_part} uuid; then setenv root_part ${rootfs_r_part}; else setenv recovery_rootfs; fi; fi; if test -z \\"${root_part}\\"; then if test \\"${active_rootfs}\\" = \\"B\\"; then if part uuid mmc ${devnum}:${rootfs_b_part} uuid; then setenv root_part ${rootfs_b_part}; else setenv active_rootfs A; setenv root_part ${rootfs_a_part}; fi; else if part uuid mmc ${devnum}:${rootfs_a_part} uuid; then setenv root_part ${rootfs_a_part}; else setenv active_rootfs B; setenv root_part ${rootfs_b_part}; fi; fi; fi\\0" \\\
"rootfsargs_ro=part uuid mmc ${devnum}:${root_part} uuid && env set bootargs ${tdxargs} root=PARTUUID=${uuid} ro rootwait console=${console},${baudrate}\\0" \\\
"rootfsargs_rw=part uuid mmc ${devnum}:${root_part} uuid && env set bootargs ${tdxargs} root=PARTUUID=${uuid} rw rootwait console=${console},${baudrate}\\0" \\\
"rootfsargs_set=if test \\"${recovery_rootfs}\\" = \\"R\\"; then run rootfsargs_ro; else run rootfsargs_rw; fi\\0" \\\
"custom_scan_dev_for_boot_part=run select_bootfs; setenv kernel_loaded 0; run scan_dev_for_boot; if test \\"${kernel_loaded}\\" != \\"1\\"; then if test \\"${active_bootfs}\\" = \\"A\\"; then setenv active_bootfs B; setenv distro_bootpart ${bootfs_b_part}; else setenv active_bootfs A; setenv distro_bootpart ${bootfs_a_part}; fi; saveenv; setenv kernel_loaded 0; run scan_dev_for_boot; fi\\0" \\\
"custom_mmc_boot=if mmc dev 2; then devtype=mmc; setenv devnum 2; run select_rootfs; run custom_scan_dev_for_boot_part; run rootfsargs_set; fi\\0" \\\
"bootcmd_mmc1=run custom_mmc_boot\\0" \\\
"bootcmd_mmc2=run custom_mmc_boot\\0"' ${S}/include/configs/verdin-imx8mp.h
}
Error Log:
Sstate summary: Wanted 507 Local 476 Mirrors 0 Missed 31 Current 5677 (93% match, 99% complete)##### | ETA: 0:00:00
Initialising tasks: 100% |###################################################################################| Time: 0:00:10
NOTE: Executing Tasks
ERROR: u-boot-toradex-1_2024.07-r0 do_configure: ExecutionError('/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/temp/run.do_configure.284635', 1, None, None)
ERROR: Logfile of failure stored in: /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/temp/log.do_configure.284635
Log data follows:
| DEBUG: Executing python function extend_recipe_sysroot
| NOTE: Direct dependencies are ['/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-core/glibc/glibc_2.39.bb:do_populate_sysroot', '/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/gcc/gcc-cross_13.4.bb:do_populate_sysroot', '/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/gcc/gcc-runtime_13.4.bb:do_populate_sysroot', '/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/quilt/quilt-native_0.67.bb:do_populate_sysroot', '/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-connectivity/openssl/openssl_3.2.6.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/bison/bison_3.8.2.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/flex/flex_2.6.4.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/patch/patch_2.7.6.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/pseudo/pseudo_git.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/python/python3-jsonschema_4.21.1.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/python/python3-pyelftools_0.30.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/python/python3-pyyaml_6.0.1.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/python/python3-setuptools_69.1.1.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/python/python3-yamllint_1.35.1.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/python/python3_3.12.12.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-devtools/swig/swig_4.2.1.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-extended/bc/bc_1.07.1.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-kernel/dtc/dtc_1.7.0.bb:do_populate_sysroot', 'virtual:native:/home/hari/oe-core/build/../layers/openembedded-core/meta/recipes-support/gnutls/gnutls_3.8.4.bb:do_populate_sysroot']
| NOTE: Installed into sysroot: []
| NOTE: Skipping as already exists in sysroot: ['gettext-minimal-native', 'glibc', 'binutils-cross-aarch64', 'cmake-native', 'gcc-cross-aarch64', 'gcc-runtime', 'libgcc', 'libtool-native', 'm4-native', 'quilt-native', 'texinfo-dummy-native', 'kern-tools-native', 'linux-libc-headers', 'openssl-native', 'expat-native', 'ncurses-native', 'readline-native', 'util-linux-libuuid-native', 'zlib-native', 'bison-native', 'flex-native', 'git-native', 'gnu-config-native', 'libedit-native', 'make-native', 'patch-native', 'perl-native', 'pkgconfig-native', 'pseudo-native', 'python3-attrs-native', 'python3-build-native', 'python3-calver-native', 'python3-cython-native', 'python3-editables-native', 'python3-flit-core-native', 'python3-hatch-fancy-pypi-readme-native', 'python3-hatch-vcs-native', 'python3-hatchling-native', 'python3-idna-native', 'python3-importlib-metadata-native', 'python3-installer-native', 'python3-jsonpointer-native', 'python3-jsonschema-specifications-native', 'python3-jsonschema-native', 'python3-maturin-native', 'python3-more-itertools-native', 'python3-packaging-native', 'python3-pathlib2-native', 'python3-pathspec-native', 'python3-pip-native', 'python3-pluggy-native', 'python3-pyelftools-native', 'python3-pyparsing-native', 'python3-pyproject-hooks-native', 'python3-pyrsistent-native', 'python3-pyyaml-native', 'python3-referencing-native', 'python3-rfc3339-validator-native', 'python3-rfc3987-native', 'python3-rpds-py-native', 'python3-semantic-version-native', 'python3-setuptools-rust-native', 'python3-setuptools-scm-native', 'python3-setuptools-native', 'python3-six-native', 'python3-toml-native', 'python3-tomli-native', 'python3-trove-classifiers-native', 'python3-typing-extensions-native', 'python3-webcolors-native', 'python3-wheel-native', 'python3-yamllint-native', 'python3-zipp-native', 'python3-native', 'cargo-native', 'rust-llvm-native', 'rust-native', 'swig-native', 'bc-native', 'bzip2-native', 'libidn2-native', 'libnsl2-native', 'libtirpc-native', 'unzip-native', 'xz-native', 'zstd-native', 'dtc-native', 'attr-native', 'ca-certificates-native', 'curl-native', 'gdbm-native', 'gmp-native', 'gnutls-native', 'libtasn1-native', 'libffi-native', 'libmpc-native', 'libpcre2-native', 'libssh2-native', 'libunistring-native', 'libyaml-native', 'mpfr-native', 'nettle-native', 'sqlite3-native']
| DEBUG: Python function extend_recipe_sysroot finished
| DEBUG: Searching for 0001-board-toradex-verdin-imx8mm-add-4-GB-lpddr4-memory-s.patch in paths:
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/tdx-distro
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/tdx-distro
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/tdx-distro
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/tdx-distro
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/tdx-xwayland
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/tdx-xwayland
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/tdx-xwayland
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/tdx-xwayland
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/verdin-imx8mp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/verdin-imx8mp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/verdin-imx8mp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/verdin-imx8mp
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/mx8mp-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/mx8mp-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/mx8mp-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/mx8mp-nxp-bsp
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/mx8mp-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/mx8mp-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/mx8mp-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/mx8mp-generic-bsp
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/mx8m-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/mx8m-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/mx8m-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/mx8m-nxp-bsp
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/mx8m-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/mx8m-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/mx8m-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/mx8m-generic-bsp
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/mx8-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/mx8-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/mx8-nxp-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/mx8-nxp-bsp
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/mx8-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/mx8-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/mx8-generic-bsp
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/mx8-generic-bsp
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/imxvulkan
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/imxvulkan
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/imxvulkan
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/imxvulkan
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/imxgpu3d
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/imxgpu3d
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/imxgpu3d
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/imxgpu3d
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/imxgpu2d
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex-2024.07/imxgpu2d
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex/imxgpu2d
| /home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/files/imxgpu2d
| /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/imxviv
| DEBUG: Using /home/hari/oe-core/layers/meta-lokbest/recipes-bsp/u-boot/files/verdin-imx8mp/disable-console-logs.patch for disable-console-logs.patch
| DEBUG: Executing shell function do_configure
| NOTE: make CROSS_COMPILE=aarch64-tdx-linux- CC=aarch64-tdx-linux-gcc --sysroot=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot -fcanon-prefix-map -fmacro-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git=/usr/src/debug/u-boot-toradex/2024.07 -fdebug-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git=/usr/src/debug/u-boot-toradex/2024.07 -fmacro-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/build=/usr/src/debug/u-boot-toradex/2024.07 -fdebug-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/build=/usr/src/debug/u-boot-toradex/2024.07 -fdebug-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot= -fmacro-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot= -fdebug-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native= V=1 HOSTCC=gcc -isystem/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/include -O2 -pipe -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,--enable-new-dtags -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-O1 STAGING_INCDIR=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/include STAGING_LIBDIR=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -C /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git O=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/build/verdin-imx8mp_defconfig verdin-imx8mp_defconfig
| make: Entering directory '/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git'
| make -C /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/build/verdin-imx8mp_defconfig KBUILD_SRC=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git \
| -f /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/Makefile verdin-imx8mp_defconfig
| make[1]: Entering directory '/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/build/verdin-imx8mp_defconfig'
| make -f /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/scripts/Makefile.build obj=scripts/basic
| gcc -isystem/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/include -O2 -pipe -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,--enable-new-dtags -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-O1 -Wp,-MD,scripts/basic/.fixdep.d -Iscripts/basic -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu11 -o scripts/basic/fixdep /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/scripts/basic/fixdep.c
| rm -f .tmp_quiet_recordmcount
| ln -fsn /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git source
| /bin/bash /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/scripts/mkmakefile /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git
| GEN Makefile
| make -f /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/scripts/Makefile.build obj=scripts/kconfig verdin-imx8mp_defconfig
| gcc -isystem/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/include -O2 -pipe -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,--enable-new-dtags -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-O1 -Wp,-MD,scripts/kconfig/.conf.o.d -Iscripts/kconfig -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu11 -c -o scripts/kconfig/conf.o /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/scripts/kconfig/conf.c
| bison -oscripts/kconfig/zconf.tab.c -t -l /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/scripts/kconfig/zconf.y
| flex -oscripts/kconfig/zconf.lex.c -L /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/scripts/kconfig/zconf.l
| gcc -isystem/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/include -O2 -pipe -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,--enable-new-dtags -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-O1 -Wp,-MD,scripts/kconfig/.zconf.tab.o.d -Iscripts/kconfig -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu11 -I/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/scripts/kconfig -c -o scripts/kconfig/zconf.tab.o scripts/kconfig/zconf.tab.c
| gcc -isystem/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/include -O2 -pipe -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -L/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,--enable-new-dtags -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath-link,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/usr/lib -Wl,-rpath,/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native/lib -Wl,-O1 -o scripts/kconfig/conf scripts/kconfig/conf.o scripts/kconfig/zconf.tab.o
| aarch64-tdx-linux-gcc --sysroot=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot -fcanon-prefix-map -fmacro-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git=/usr/src/debug/u-boot-toradex/2024.07 -fdebug-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git=/usr/src/debug/u-boot-toradex/2024.07 -fmacro-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/build=/usr/src/debug/u-boot-toradex/2024.07 -fdebug-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/build=/usr/src/debug/u-boot-toradex/2024.07 -fdebug-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot= -fmacro-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot= -fdebug-prefix-map=/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/recipe-sysroot-native= -E -nostdinc -P -I /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git -undef -x assembler-with-cpp /home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git/arch/../configs/verdin-imx8mp_defconfig -o generated_defconfig
| scripts/kconfig/conf --defconfig=generated_defconfig Kconfig
| #
| # configuration written to .config
| #
| make[1]: Leaving directory '/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/build/verdin-imx8mp_defconfig'
| make: Leaving directory '/home/hari/oe-core/build/tmp/work/verdin_imx8mp-tdx-linux/u-boot-toradex/2024.07/git'
| sed: -e expression #1, char 36: unknown command: `"'
| WARNING: exit code 1 from a shell command.
ERROR: Task (/home/hari/oe-core/build/../layers/meta-toradex-bsp-common/recipes-bsp/u-boot/u-boot-toradex_2024.07.bb:do_configure) failed with exit code '1'
Setscene tasks: 6184 of 6184
Give the correct solution for this error to resolve and success build with update uboot initial env file?