1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 18:44:08 +03:00

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
This commit is contained in:
nico 2010-04-04 15:47:26 +00:00
parent d266f7371f
commit d1f26658a3

View File

@ -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]}
}