projects
/
openwrt
/
staging
/
lynxis.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f827557
)
sysupgrade: fix typo in platform_do_upgrade() on x86 (closes: #7068), thanks to acinonyx
author
Nicolas Thill
<nico@openwrt.org>
Sun, 4 Apr 2010 15:47:26 +0000
(15:47 +0000)
committer
Nicolas Thill
<nico@openwrt.org>
Sun, 4 Apr 2010 15:47:26 +0000
(15:47 +0000)
SVN-Revision: 20703
target/linux/x86/base-files/lib/upgrade/platform.sh
patch
|
blob
|
history
diff --git
a/target/linux/x86/base-files/lib/upgrade/platform.sh
b/target/linux/x86/base-files/lib/upgrade/platform.sh
index d765c5e6ba472b42b3465f68285c23441594403e..ca5d2c670cfe90a72aa445a1c14a57c4ceda2ca3 100644
(file)
--- 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]}
}