2006-06-16 01:21:17 +08:00
|
|
|
#!/bin/sh
|
2006-06-27 08:36:13 +08:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2007-03-04 03:22:41 +08:00
|
|
|
. /etc/functions.sh
|
2006-06-27 08:36:13 +08:00
|
|
|
|
2006-06-16 01:21:17 +08:00
|
|
|
is_dirty() {
|
2007-03-04 03:22:41 +08:00
|
|
|
mtdpart="$(find_mtd_part linux)"
|
2006-06-16 01:21:17 +08:00
|
|
|
grep Broadcom /proc/cpuinfo >&- || return 1
|
2007-03-04 03:22:41 +08:00
|
|
|
OFFSET="$(($(hexdump -v $mtdpart -s 20 -n 2 -e '"%d"')-1))"
|
|
|
|
return $(hexdump -v $mtdpart -s $OFFSET -n 1 -e '"%d"')
|
2006-06-16 01:21:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ "$1" != "failsafe" ]; then
|
|
|
|
mtd unlock linux
|
|
|
|
mount | grep jffs2 >&-
|
|
|
|
if [ $? = 0 ] ; then
|
2006-06-24 04:22:54 +08:00
|
|
|
mount -o remount,rw /dev/root /
|
2006-06-16 01:21:17 +08:00
|
|
|
else
|
|
|
|
. /bin/firstboot
|
|
|
|
is_dirty
|
|
|
|
[ $? != 0 ] && {
|
|
|
|
echo "switching to jffs2"
|
2007-03-04 03:22:41 +08:00
|
|
|
mount $(find_mtd_part OpenWrt) /jffs -t jffs2
|
2006-11-17 11:07:10 +08:00
|
|
|
fopivot /jffs /rom
|
2006-06-16 01:21:17 +08:00
|
|
|
} || {
|
2006-11-17 11:07:10 +08:00
|
|
|
echo "jffs2 not ready yet; using ramdisk"
|
2006-06-16 01:21:17 +08:00
|
|
|
ramoverlay
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
fi
|