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 | 19269f57b6f58b264b4d1adcb31d4786a6eaef97 (patch) | |
tree | 18992ebbbac4be7477d307b819d946a5bbe5a816 | |
parent | e3751cbe46ac0a6dbb627252fef3017d06ddb026 (diff) | |
download | upstream-19269f57b6f58b264b4d1adcb31d4786a6eaef97.tar.gz upstream-19269f57b6f58b264b4d1adcb31d4786a6eaef97.tar.bz2 upstream-19269f57b6f58b264b4d1adcb31d4786a6eaef97.zip |
sysupgrade: fix typo in platform_do_upgrade() on x86 (closes: #7068), thanks to acinonyx
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20703 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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 d765c5e6ba..ca5d2c670c 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]} } |