From 92d658107f848713bc4abfd839dc9acc283b9eb9 Mon Sep 17 00:00:00 2001 From: Hector Palacios Date: Mon, 27 Jan 2020 17:47:52 +0100 Subject: [PATCH] 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 Signed-off-by: Hector Palacios https://jira.digi.com/browse/DEL-6953 --- .../u-boot-dey/ccimx8x-sbc-express/install_linux_fw_sd.txt | 4 ++-- .../u-boot/u-boot-dey/ccimx8x-sbc-pro/install_linux_fw_sd.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8x-sbc-express/install_linux_fw_sd.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8x-sbc-express/install_linux_fw_sd.txt index 62501234a..feea47c06 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8x-sbc-express/install_linux_fw_sd.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8x-sbc-express/install_linux_fw_sd.txt @@ -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 diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8x-sbc-pro/install_linux_fw_sd.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8x-sbc-pro/install_linux_fw_sd.txt index cce9bf896..76ed5aa6a 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8x-sbc-pro/install_linux_fw_sd.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey/ccimx8x-sbc-pro/install_linux_fw_sd.txt @@ -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