From 041ca93cd9185e7d3bcdafddf9f2719fcc6b2a53 Mon Sep 17 00:00:00 2001 From: Mike Engel Date: Mon, 22 Apr 2024 15:47:01 +0200 Subject: [PATCH] ccimx8x: fix u-boot Trustfence naming for installation script This commit fixes u-boot Trustfence naming for signed and encrypted images used in the installation script removing the a duplicated dash in the u-boot name. https://onedigi.atlassian.net/browse/DEL-8271 Signed-off-by: Mike Engel --- meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc index 637b0033d..aa0f7e391 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc @@ -89,9 +89,9 @@ build_uboot_scripts() { if [ "${TRUSTFENCE_SIGN}" = "1" ]; then if [ "${DEY_SOC_VENDOR}" = "NXP" ]; then if [ "${TRUSTFENCE_DEK_PATH}" != "0" ]; then - sed -i -e 's,##SIGNED##,-encrypted,g' ${TMP_INSTALL_SCR} + sed -i -e 's,##SIGNED##,encrypted,g' ${TMP_INSTALL_SCR} else - sed -i -e 's,##SIGNED##,-signed,g' ${TMP_INSTALL_SCR} + sed -i -e 's,##SIGNED##,signed,g' ${TMP_INSTALL_SCR} fi else sed -i -e 's,##SIGNED##,_Signed,g' ${TMP_INSTALL_SCR}