install script: remove extra "-" in not signed/encrypted images

By default is trying to install an artifact imx-boot--<platform>
if trustfence is not enabled.

Signed-off-by: Francisco Gil <francisco.gilmartinez@digi.com>
This commit is contained in:
Francisco Gil 2024-06-14 11:11:15 +02:00
parent 87ec014630
commit 85b0895297
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ build_uboot_scripts() {
sed -i -e 's,##SIGNED_TFA##,_signed,g' ${TMP_INSTALL_SCR}
fi
else
sed -i -e 's,##SIGNED##,,g' ${TMP_INSTALL_SCR}
sed -i -e 's,-##SIGNED##,,g' -e 's,##SIGNED##,,g' ${TMP_INSTALL_SCR}
if [ "${DEY_SOC_VENDOR}" = "STM" ]; then
sed -i -e 's,##SIGNED_TFA##,,g' ${TMP_INSTALL_SCR}
fi