diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-04-04 15:47:26 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-04-04 15:47:26 +0000 |
commit | 1fc7da03066f4d88ee1773677e490ba74fc8e834 (patch) | |
tree | 4b0c1a501259b199fbfd01d3da6b8f29ff421265 /target/linux | |
parent | f8275576d92fce20114e718cd45662c3c4dcab2d (diff) | |
download | mtk-20170518-1fc7da03066f4d88ee1773677e490ba74fc8e834.zip mtk-20170518-1fc7da03066f4d88ee1773677e490ba74fc8e834.tar.gz mtk-20170518-1fc7da03066f4d88ee1773677e490ba74fc8e834.tar.bz2 |
sysupgrade: fix typo in platform_do_upgrade() on x86 (closes: #7068), thanks to acinonyx
SVN-Revision: 20703
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/x86/base-files/lib/upgrade/platform.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86/base-files/lib/upgrade/platform.sh b/target/linux/x86/base-files/lib/upgrade/platform.sh index d765c5e..ca5d2c6 100644 --- a/target/linux/x86/base-files/lib/upgrade/platform.sh +++ b/target/linux/x86/base-files/lib/upgrade/platform.sh @@ -17,7 +17,7 @@ platform_do_upgrade() { sync grep -q -e "jffs2" -e "squashfs" /proc/cmdline \ && ROOTFS="$(awk 'BEGIN { RS=" "; FS="="; } ($1 == "block2mtd.block2mtd") { print substr($2,1,index($2, ",")-1) }' < /proc/cmdline)" \ - || ROOTFS="$(awk 'BEGIN { RS=" "; FS="="; } ($1 == "root") { print $2 ) }' < /proc/cmdline)" + || ROOTFS="$(awk 'BEGIN { RS=" "; FS="="; } ($1 == "root") { print $2 }' < /proc/cmdline)" [ -b ${ROOTFS%[0-9]} ] && get_image "$1" > ${ROOTFS%[0-9]} } |