diff options
author | John Crispin <john@openwrt.org> | 2014-06-17 15:40:02 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-17 15:40:02 +0000 |
commit | 1a3ebd51adb6ef43e8da4ec8d9cc7555ec04d73a (patch) | |
tree | a8ed81265c5bcb9d642b13d98472c4134637b563 /package/system | |
parent | 575127fe1c82e814da155a15be0a02b4153e1d00 (diff) | |
download | upstream-1a3ebd51adb6ef43e8da4ec8d9cc7555ec04d73a.tar.gz upstream-1a3ebd51adb6ef43e8da4ec8d9cc7555ec04d73a.tar.bz2 upstream-1a3ebd51adb6ef43e8da4ec8d9cc7555ec04d73a.zip |
procd: some cleanup for SysupgradeNAND
Removed unused ubi file file from template as ubinized images are
passed directly and not inside the tarball.
Also removed left-over white-space.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 41237
Diffstat (limited to 'package/system')
-rw-r--r-- | package/system/procd/files/nand.sh | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/package/system/procd/files/nand.sh b/package/system/procd/files/nand.sh index 0b58a0313d..9131ddaa7b 100644 --- a/package/system/procd/files/nand.sh +++ b/package/system/procd/files/nand.sh @@ -4,8 +4,6 @@ . /lib/functions.sh -# combined-image uses 64k blocks -CI_BLKSZ=65536 # 'data' partition on NAND contains UBI CI_UBIPART="ubi" @@ -192,7 +190,7 @@ nand_upgrade_ubinized() { if [ ! "$mtdnum" ]; then echo "cannot find mtd device $CI_UBIPART" - return 1; + reboot -f fi local mtddev="/dev/mtd${mtdnum}" @@ -212,10 +210,9 @@ nand_do_upgrade_stage2() { local kernel_length=`(tar xf $tar_file sysupgrade-$board_name/kernel -O | wc -c) 2> /dev/null` local rootfs_length=`(tar xf $tar_file sysupgrade-$board_name/root -O | wc -c) 2> /dev/null` - local ubi_length=`(tar xf $tar_file sysupgrade-$board_name/ubi -O | wc -c) 2> /dev/null` - + local rootfs_type="$(identify_tar "$tar_file" root)" - + local has_kernel=1 local has_env=0 |