add vga console support for x86-2.6 images (fixes #1342, #840)
[openwrt-10.03/.git] / package / base-files / files / sbin / mount_root
1 #!/bin/sh
2 # Copyright (C) 2006 OpenWrt.org
3 . /etc/functions.sh
4
5 mount none /proc -t proc
6 size=$(awk '/Mem:/ {l=5242880;print((s=$2/2)<l)?$2-l:s}' /proc/meminfo)
7 mount none /tmp -t tmpfs -o size=$size,nosuid,nodev,mode=1777
8 if grep devfs /proc/filesystems > /dev/null; then
9         mount none /dev -t devfs
10 else
11         mount -t sysfs none /sys
12         mount -t tmpfs tmpfs /dev -o size=512K
13         mknod /dev/console c 5 1
14         exec >/dev/console </dev/console 2>&1
15         mkdir /dev/shm
16         /sbin/hotplug2 --no-persistent --coldplug
17 fi
18 mkdir -p /dev/pts
19 mount none /dev/pts -t devpts
20
21 [ failsafe != "$1" ] && {
22         grep rootfs /proc/mtd >/dev/null 2>/dev/null && {
23                 mtd unlock rootfs
24                 grep rootfs_data /proc/mtd >/dev/null 2>/dev/null && {
25                         . /bin/firstboot
26                         echo "switching to jffs2"
27                         mount "$(find_mtd_part rootfs_data)" /jffs -t jffs2
28                         fopivot /jffs /rom
29                 }
30         } || mount -o remount,rw /dev/root /
31 }