u-boot: fix wrongly finished 'if' clause on install_fw script

Signed-off-by: Hector Palacios <hector.palacios@digi.com>
This commit is contained in:
Hector Palacios 2019-07-10 09:52:00 +02:00
parent e8aad5b23e
commit 7d64118a94
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ if test -n "${module_ram}" && test -n "${soc_type}"; then
else
# Determine U-Boot file to program basing on SOM's variant
if test -n "${module_variant}"; then
if test "${module_variant}" = "0x01" ||
if test "${module_variant}" = "0x01"; then
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro-1.2GHz_1GB_32bit.bin;
elif test "${module_variant}" = "0x02" ||
test "${module_variant}" = "0x03"; then