9a87fadbaa088ac8db3a4cdfdadf24c606bac2d2
2 # Copyright (C) 2006 OpenWrt.org
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
11 mount
-t sysfs none
/sys
12 mount
-t tmpfs tmpfs
/dev
-o size
=512K
13 mknod
/dev
/console c
5 1
18 mount none
/dev
/pts
-t devpts
20 [ failsafe
!= "$1" ] && {
21 grep rootfs
/proc
/mtd
>/dev
/null
2>/dev
/null
&& {
23 grep rootfs_data
/proc
/mtd
>/dev
/null
2>/dev
/null
&& {
25 echo "switching to jffs2"
26 mount
"$(find_mtd_part rootfs_data)" /jffs
-t jffs2
29 } || mount
-o remount
,rw
/dev
/root
/
This page took 0.040063 seconds and 3 git commands to generate.