sysupgrade: Get target device from kernel cmdline, patch from acinonyx

SVN-Revision: 20538
master
Florian Fainelli 15 years ago
parent ebab30b7c7
commit e1a4f69cb5
  1. 6
      target/linux/x86/base-files/lib/upgrade/platform.sh

@ -13,8 +13,12 @@ platform_check_image() {
} }
platform_do_upgrade() { platform_do_upgrade() {
local ROOTFS
sync sync
get_image "$1" > /dev/sda 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)"
[ -b ${ROOTFS%[0-9]} ] && get_image "$1" > ${ROOTFS%[0-9]}
} }
x86_prepare_ext2() { x86_prepare_ext2() {

Loading…
Cancel
Save