From 50dc84d9497ce3febe9c824465586a21614d51b4 Mon Sep 17 00:00:00 2001 From: Hector Palacios Date: Tue, 31 Jan 2017 10:31:45 +0100 Subject: [PATCH] uboot: install_script: add missing semicolons Signed-off-by: Hector Palacios https://jira.digi.com/browse/DEL-3603 --- .../u-boot-dey-2015.04/ccimx6/install_linux_fw_sd.txt | 4 ++-- .../ccimx6ulsbc/install_linux_fw_sd.txt | 10 +++++----- .../ccimx6ulstarter/install_linux_fw_sd.txt | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6/install_linux_fw_sd.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6/install_linux_fw_sd.txt index 828a4fff6..0dc005071 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6/install_linux_fw_sd.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6/install_linux_fw_sd.txt @@ -162,8 +162,8 @@ setenv bootcmd " exit; fi; echo \"\"; - setenv boot_recovery yes - setenv recovery_command wipe_update + setenv boot_recovery yes; + setenv recovery_command wipe_update; saveenv; echo \">> Firmware installation complete. Booting into recovery for final deployment.\"; sleep 1; diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/install_linux_fw_sd.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/install_linux_fw_sd.txt index dd58604c7..5c1c46c05 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/install_linux_fw_sd.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulsbc/install_linux_fw_sd.txt @@ -74,7 +74,7 @@ setenv bootcmd " echo \">> Installing Linux kernel and device tree files\"; echo \"\"; echo \"\"; - nand erase.part linux + nand erase.part linux; update linux mmc ${INSTALL_MMCDEV} fat ${INSTALL_LINUX_FILENAME}; if test \$? -eq 1; then echo \"[ERROR] Failed to update linux partition!\"; @@ -87,7 +87,7 @@ setenv bootcmd " echo \">> Installing recovery\"; echo \"\"; echo \"\"; - nand erase.part recovery + nand erase.part recovery; update recovery mmc ${INSTALL_MMCDEV} fat ${INSTALL_RECOVERY_FILENAME}; if test \$? -eq 1; then echo \"[ERROR] Failed to update recovery partition!\"; @@ -100,7 +100,7 @@ setenv bootcmd " echo \">> Installing Linux root file system\"; echo \"\"; echo \"\"; - nand erase.part rootfs + nand erase.part rootfs; update rootfs mmc ${INSTALL_MMCDEV} fat ${INSTALL_ROOTFS_FILENAME}; if test \$? -eq 1; then echo \"[ERROR] Failed to update rootfs partition!\"; @@ -109,8 +109,8 @@ setenv bootcmd " exit; fi; echo \"\"; - setenv boot_recovery yes - setenv recovery_command wipe_update + setenv boot_recovery yes; + setenv recovery_command wipe_update; saveenv; echo \">> Firmware installation complete. Booting into recovery for final deployment.\"; sleep 1; diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulstarter/install_linux_fw_sd.txt b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulstarter/install_linux_fw_sd.txt index e6865bd11..ced13db9a 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulstarter/install_linux_fw_sd.txt +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey-2015.04/ccimx6ulstarter/install_linux_fw_sd.txt @@ -74,7 +74,7 @@ setenv bootcmd " echo \">> Installing Linux kernel and device tree files\"; echo \"\"; echo \"\"; - nand erase.part linux + nand erase.part linux; update linux mmc ${INSTALL_MMCDEV} fat ${INSTALL_LINUX_FILENAME}; if test \$? -eq 1; then echo \"[ERROR] Failed to update linux partition!\"; @@ -87,7 +87,7 @@ setenv bootcmd " echo \">> Installing recovery\"; echo \"\"; echo \"\"; - nand erase.part recovery + nand erase.part recovery; update recovery mmc ${INSTALL_MMCDEV} fat ${INSTALL_RECOVERY_FILENAME}; if test \$? -eq 1; then echo \"[ERROR] Failed to update recovery partition!\"; @@ -100,7 +100,7 @@ setenv bootcmd " echo \">> Installing Linux root file system\"; echo \"\"; echo \"\"; - nand erase.part rootfs + nand erase.part rootfs; update rootfs mmc ${INSTALL_MMCDEV} fat ${INSTALL_ROOTFS_FILENAME}; if test \$? -eq 1; then echo \"[ERROR] Failed to update rootfs partition!\"; @@ -109,8 +109,8 @@ setenv bootcmd " exit; fi; echo \"\"; - setenv boot_recovery yes - setenv recovery_command wipe_update + setenv boot_recovery yes; + setenv recovery_command wipe_update; saveenv; echo \">> Firmware installation complete. Booting into recovery for final deployment.\"; sleep 1;