uboot: install_script: add missing semicolons

Signed-off-by: Hector Palacios <hector.palacios@digi.com>

https://jira.digi.com/browse/DEL-3603
This commit is contained in:
Hector Palacios 2017-01-31 10:31:45 +01:00
parent b2259f7a83
commit 50dc84d949
3 changed files with 12 additions and 12 deletions

View File

@ -162,8 +162,8 @@ setenv bootcmd "
exit; exit;
fi; fi;
echo \"\"; echo \"\";
setenv boot_recovery yes setenv boot_recovery yes;
setenv recovery_command wipe_update setenv recovery_command wipe_update;
saveenv; saveenv;
echo \">> Firmware installation complete. Booting into recovery for final deployment.\"; echo \">> Firmware installation complete. Booting into recovery for final deployment.\";
sleep 1; sleep 1;

View File

@ -74,7 +74,7 @@ setenv bootcmd "
echo \">> Installing Linux kernel and device tree files\"; echo \">> Installing Linux kernel and device tree files\";
echo \"\"; echo \"\";
echo \"\"; echo \"\";
nand erase.part linux nand erase.part linux;
update linux mmc ${INSTALL_MMCDEV} fat ${INSTALL_LINUX_FILENAME}; update linux mmc ${INSTALL_MMCDEV} fat ${INSTALL_LINUX_FILENAME};
if test \$? -eq 1; then if test \$? -eq 1; then
echo \"[ERROR] Failed to update linux partition!\"; echo \"[ERROR] Failed to update linux partition!\";
@ -87,7 +87,7 @@ setenv bootcmd "
echo \">> Installing recovery\"; echo \">> Installing recovery\";
echo \"\"; echo \"\";
echo \"\"; echo \"\";
nand erase.part recovery nand erase.part recovery;
update recovery mmc ${INSTALL_MMCDEV} fat ${INSTALL_RECOVERY_FILENAME}; update recovery mmc ${INSTALL_MMCDEV} fat ${INSTALL_RECOVERY_FILENAME};
if test \$? -eq 1; then if test \$? -eq 1; then
echo \"[ERROR] Failed to update recovery partition!\"; echo \"[ERROR] Failed to update recovery partition!\";
@ -100,7 +100,7 @@ setenv bootcmd "
echo \">> Installing Linux root file system\"; echo \">> Installing Linux root file system\";
echo \"\"; echo \"\";
echo \"\"; echo \"\";
nand erase.part rootfs nand erase.part rootfs;
update rootfs mmc ${INSTALL_MMCDEV} fat ${INSTALL_ROOTFS_FILENAME}; update rootfs mmc ${INSTALL_MMCDEV} fat ${INSTALL_ROOTFS_FILENAME};
if test \$? -eq 1; then if test \$? -eq 1; then
echo \"[ERROR] Failed to update rootfs partition!\"; echo \"[ERROR] Failed to update rootfs partition!\";
@ -109,8 +109,8 @@ setenv bootcmd "
exit; exit;
fi; fi;
echo \"\"; echo \"\";
setenv boot_recovery yes setenv boot_recovery yes;
setenv recovery_command wipe_update setenv recovery_command wipe_update;
saveenv; saveenv;
echo \">> Firmware installation complete. Booting into recovery for final deployment.\"; echo \">> Firmware installation complete. Booting into recovery for final deployment.\";
sleep 1; sleep 1;

View File

@ -74,7 +74,7 @@ setenv bootcmd "
echo \">> Installing Linux kernel and device tree files\"; echo \">> Installing Linux kernel and device tree files\";
echo \"\"; echo \"\";
echo \"\"; echo \"\";
nand erase.part linux nand erase.part linux;
update linux mmc ${INSTALL_MMCDEV} fat ${INSTALL_LINUX_FILENAME}; update linux mmc ${INSTALL_MMCDEV} fat ${INSTALL_LINUX_FILENAME};
if test \$? -eq 1; then if test \$? -eq 1; then
echo \"[ERROR] Failed to update linux partition!\"; echo \"[ERROR] Failed to update linux partition!\";
@ -87,7 +87,7 @@ setenv bootcmd "
echo \">> Installing recovery\"; echo \">> Installing recovery\";
echo \"\"; echo \"\";
echo \"\"; echo \"\";
nand erase.part recovery nand erase.part recovery;
update recovery mmc ${INSTALL_MMCDEV} fat ${INSTALL_RECOVERY_FILENAME}; update recovery mmc ${INSTALL_MMCDEV} fat ${INSTALL_RECOVERY_FILENAME};
if test \$? -eq 1; then if test \$? -eq 1; then
echo \"[ERROR] Failed to update recovery partition!\"; echo \"[ERROR] Failed to update recovery partition!\";
@ -100,7 +100,7 @@ setenv bootcmd "
echo \">> Installing Linux root file system\"; echo \">> Installing Linux root file system\";
echo \"\"; echo \"\";
echo \"\"; echo \"\";
nand erase.part rootfs nand erase.part rootfs;
update rootfs mmc ${INSTALL_MMCDEV} fat ${INSTALL_ROOTFS_FILENAME}; update rootfs mmc ${INSTALL_MMCDEV} fat ${INSTALL_ROOTFS_FILENAME};
if test \$? -eq 1; then if test \$? -eq 1; then
echo \"[ERROR] Failed to update rootfs partition!\"; echo \"[ERROR] Failed to update rootfs partition!\";
@ -109,8 +109,8 @@ setenv bootcmd "
exit; exit;
fi; fi;
echo \"\"; echo \"\";
setenv boot_recovery yes setenv boot_recovery yes;
setenv recovery_command wipe_update setenv recovery_command wipe_update;
saveenv; saveenv;
echo \">> Firmware installation complete. Booting into recovery for final deployment.\"; echo \">> Firmware installation complete. Booting into recovery for final deployment.\";
sleep 1; sleep 1;