aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2010-04-04 15:47:26 +0000
committerNicolas Thill <nico@openwrt.org>2010-04-04 15:47:26 +0000
commit19269f57b6f58b264b4d1adcb31d4786a6eaef97 (patch)
tree18992ebbbac4be7477d307b819d946a5bbe5a816 /target/linux
parente3751cbe46ac0a6dbb627252fef3017d06ddb026 (diff)
downloadupstream-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
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/x86/base-files/lib/upgrade/platform.sh2
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]}
}