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
() {
17 get_image
"$1" > /dev
/hda
21 # if we're running from ext2, we need to make sure that we have a mtd
22 # partition that points to the active rootfs partition.
23 # however this only matters if we actually need to preserve the config files
24 [ "$SAVE_CONFIG" -eq 1 ] ||
return 0
25 grep rootfs
/proc
/mtd
>/dev
/null ||
{
26 echo /dev
/hda2
,65536,rootfs
> /sys
/module
/block2mtd
/parameters
/block2mtd
29 append sysupgrade_pre_upgrade x86_prepare_ext2