2005-03-23 15:31:22 +02:00
|
|
|
#!/bin/sh
|
2006-06-27 03:36:13 +03:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2007-03-02 03:23:36 +02:00
|
|
|
. /etc/functions.sh
|
2006-06-27 03:36:13 +03:00
|
|
|
|
2007-05-10 17:37:47 +03:00
|
|
|
jffs2_ready () {
|
|
|
|
mtdpart="$(find_mtd_part rootfs_data)"
|
|
|
|
magic=$(hexdump $mtdpart -n 4 -e '4/1 "%02x"')
|
|
|
|
[ "$magic" != "deadc0de" ]
|
|
|
|
}
|
|
|
|
|
2007-05-31 15:09:08 +03:00
|
|
|
grep rootfs_data /proc/mtd >/dev/null 2>/dev/null && {
|
|
|
|
. /bin/firstboot
|
|
|
|
mtd unlock rootfs_data
|
|
|
|
jffs2_ready && {
|
|
|
|
echo "switching to jffs2"
|
|
|
|
mount "$(find_mtd_part rootfs_data)" /jffs -t jffs2 && \
|
|
|
|
fopivot /jffs /rom
|
2007-05-13 12:39:21 +03:00
|
|
|
} || {
|
2007-05-31 15:09:08 +03:00
|
|
|
echo "jffs2 not ready yet; using ramdisk"
|
|
|
|
ramoverlay
|
2007-05-13 12:39:21 +03:00
|
|
|
}
|
2007-05-31 15:09:08 +03:00
|
|
|
} || {
|
|
|
|
mtd unlock rootfs
|
|
|
|
mount -o remount,rw /dev/root /
|
2007-03-04 00:32:13 +02:00
|
|
|
}
|