u-boot-dey: fix wrapped lines on install script
Wrapped lines must have a back-slash symbol so that U-Boot doesn't interpret them as finished. The missing symbol resulted in the script not being able to determine the U-Boot image to program in some cases. Reported-by: Leonid Makhnovskiy <leonid.makhnovskiy@digi.com> Signed-off-by: Hector Palacios <hector.palacios@digi.com> https://jira.digi.com/browse/DEL-6953
This commit is contained in:
parent
a332ff445f
commit
92d658107f
|
|
@ -32,10 +32,10 @@ else
|
|||
if test -n "${module_variant}"; then
|
||||
if test "${module_variant}" = "0x01"; then
|
||||
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x-sbc-express-1.2GHz_1GB_32bit.bin;
|
||||
elif test "${module_variant}" = "0x02" ||
|
||||
elif test "${module_variant}" = "0x02" || \
|
||||
test "${module_variant}" = "0x03"; then
|
||||
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x-sbc-express-1.2GHz_2GB_32bit.bin;
|
||||
elif test "${module_variant}" = "0x04" ||
|
||||
elif test "${module_variant}" = "0x04" || \
|
||||
test "${module_variant}" = "0x05"; then
|
||||
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x-sbc-express-1.2GHz_1GB_16bit.bin;
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -32,10 +32,10 @@ else
|
|||
if test -n "${module_variant}"; then
|
||||
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" ||
|
||||
elif test "${module_variant}" = "0x02" || \
|
||||
test "${module_variant}" = "0x03"; then
|
||||
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x-sbc-pro-1.2GHz_2GB_32bit.bin;
|
||||
elif test "${module_variant}" = "0x04" ||
|
||||
elif test "${module_variant}" = "0x04" || \
|
||||
test "${module_variant}" = "0x05"; then
|
||||
setenv INSTALL_UBOOT_FILENAME imx-boot-ccimx8x-sbc-pro-1.2GHz_1GB_16bit.bin;
|
||||
elif test "${module_variant}" = "0x06"; then
|
||||
|
|
|
|||
Loading…
Reference in New Issue