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:
parent
e8aad5b23e
commit
7d64118a94
|
|
@ -30,7 +30,7 @@ if test -n "${module_ram}" && test -n "${soc_type}"; then
|
||||||
else
|
else
|
||||||
# Determine U-Boot file to program basing on SOM's variant
|
# Determine U-Boot file to program basing on SOM's variant
|
||||||
if test -n "${module_variant}"; then
|
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;
|
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x_sbc_pro-1.2GHz_1GB_32bit.bin;
|
||||||
elif test "${module_variant}" = "0x02" ||
|
elif test "${module_variant}" = "0x02" ||
|
||||||
test "${module_variant}" = "0x03"; then
|
test "${module_variant}" = "0x03"; then
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue