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:
parent
f55c084064
commit
e0be8c3a1f
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue