1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-21 10:12:36 +03:00
openwrt-xburst/package/base-files/default/sbin/mount_root
nbd 676c017ecf large init script cleanup and merge of whiterussian changes, new dnsmasq config handling
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3588 3c298f89-4303-0410-b956-a3cf2f4a3e73
2006-04-05 02:09:22 +00:00

35 lines
814 B
Bash
Executable File

#!/bin/sh
is_dirty() {
grep Broadcom /proc/cpuinfo >&- || return 1
OFFSET="$(($(hexdump -v /dev/mtdblock/1 -s 20 -n 2 -e '"%d"')-1))"
return $(hexdump -v /dev/mtdblock/1 -s $OFFSET -n 1 -e '"%d"')
}
size=$(awk '/Mem:/ {l=5242880;print((s=$2/2)<l)?$2-l:s}' /proc/meminfo)
mount none /tmp -t tmpfs -o size=$size
if [ "$1" != "failsafe" ]; then
mtd unlock linux
mount | grep jffs2 >&-
if [ $? = 0 ] ; then
if [ $(cat /proc/mtd | wc -l) = 6 ]; then
mtd erase OpenWrt
jffs2root --move
else
mount -o remount,rw /dev/root /
fi
else
. /bin/firstboot
is_dirty
[ $? != 0 ] && {
mount /dev/mtdblock/4 /jffs
pivot /jffs /rom
} || ramoverlay
fi
fi
mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777
mkdir -p /dev/pts
mount none /dev/pts -t devpts
mount -t sysfs none /sys 2>&-