u-boot-dey: ccimx6ulstarter: fix typo in installer script

Signed-off-by: Mike Engel <Mike.Engel@digi.com>
(cherry picked from commit 3041f3a2f7)
This commit is contained in:
Mike Engel 2020-11-16 10:00:28 +01:00
parent a628fb9b63
commit 18198b5c12
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ fi
# Determine U-Boot file to program basing on module variant # Determine U-Boot file to program basing on module variant
if test -n "${module_variant}"; then if test -n "${module_variant}"; then
if test "${module_variant}" = "0x02" || test "${module_variant}" = "0x03" || test "${module_variant}" = "0x06" || test "${module_variant}" = "0x0a; then if test "${module_variant}" = "0x02" || test "${module_variant}" = "0x03" || test "${module_variant}" = "0x06" || test "${module_variant}" = "0x0a"; then
setenv INSTALL_UBOOT_FILENAME u-boot-ccimx6ulstarter.imx; setenv INSTALL_UBOOT_FILENAME u-boot-ccimx6ulstarter.imx;
elif test "${module_variant}" = "0x04" || test "${module_variant}" = "0x05" || test "${module_variant}" = "0x07"; then elif test "${module_variant}" = "0x04" || test "${module_variant}" = "0x05" || test "${module_variant}" = "0x07"; then
setenv INSTALL_UBOOT_FILENAME u-boot-ccimx6ulstarter1GB.imx; setenv INSTALL_UBOOT_FILENAME u-boot-ccimx6ulstarter1GB.imx;