3 platform_check_image
() {
4 [ "$ARGC" -gt 1 ] && return 1
6 case "$(get_magic_word "$1")" in
9 echo "Invalid image type"
15 platform_do_upgrade
() {
18 grep -q -e "jffs2" -e "squashfs" /proc
/cmdline \
19 && ROOTFS
="$(awk 'BEGIN { RS=" "; FS="="; } ($1 == "block2mtd.block2mtd
") { print substr($2,1,index($2, ",")-1) }' < /proc/cmdline)" \
20 || ROOTFS
="$(awk 'BEGIN { RS=" "; FS="="; } ($1 == "root
") { print $2 }' < /proc/cmdline)"
21 [ -b ${ROOTFS%[0-9]} ] && get_image
"$1" > ${ROOTFS%[0-9]}
25 # if we're running from ext2, we need to make sure that we have a mtd
26 # partition that points to the active rootfs partition.
27 # however this only matters if we actually need to preserve the config files
28 [ "$SAVE_CONFIG" -eq 1 ] ||
return 0
29 grep rootfs
/proc
/mtd
>/dev
/null ||
{
30 echo /dev
/hda2
,65536,rootfs
> /sys
/module
/block2mtd
/parameters
/block2mtd
33 append sysupgrade_pre_upgrade x86_prepare_ext2