summaryrefslogtreecommitdiffstats
path: root/target/linux/x86/base-files
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-04 15:47:26 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-04 15:47:26 +0000
commitd1f26658a3ead883ad5f6a7f56a98ff2a73d9980 (patch)
tree18992ebbbac4be7477d307b819d946a5bbe5a816 /target/linux/x86/base-files
parentd266f7371fff9056dac0db7d90bd7c3b06429a36 (diff)
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/x86/base-files')
-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 d765c5e6b..ca5d2c670 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]}
}