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;
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;

View File

@ -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;

View File

@ -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;