ccimx6qpsbc: add missing "if" condition terminator in UUU install script

One of the conditions used to determine the U-Boot file was missing its
terminator, breaking the script.

Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
(cherry picked from commit 26dc437a25)
This commit is contained in:
Gabriel Valcazar 2024-01-29 14:54:24 +01:00
parent f55c084064
commit e0be8c3a1f
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ if [ -z ${INSTALL_UBOOT_FILENAME} ]; then
if [ "$module_variant" = "0x01" ] || \
[ "$module_variant" = "0x02" ]; then
INSTALL_UBOOT_FILENAME="u-boot-##MACHINE##2GB.imx"
elif [ "$module_variant" = "0x03" ] || \
elif [ "$module_variant" = "0x03" ]; then
INSTALL_UBOOT_FILENAME="u-boot-##MACHINE##1GB.imx"
fi