5 [ -f "/tmp/.firstboot" ] && {
6 echo "firstboot is already running"
11 jdev
=$
(mount |
awk '/jffs2/ {print $3}')
13 if [ -z "$jdev" ]; then
14 echo -n "Creating jffs2 partition... "
16 mount
-t jffs2
/dev
/mtdblock
/4 /jffs
20 echo "firstboot has already been run"
21 echo "jffs2 partition is mounted, only resetting files"
27 mount
/dev
/mtdblock
/2 /rom
-o ro
29 echo -n "creating directories... "
37 echo -n "setting up symlinks... "
38 for file in $
(cd /rom
; find * -type f
; find * -type l
;)
40 ln -sf /rom
/$file $file
44 touch /tmp
/resolv.conf
45 ln -s /tmp
/resolv.conf
/etc
/resolv.conf
48 mount none
/jffs
/proc
-t proc
49 pivot_root
/jffs
/jffs
/rom
50 mount none
/dev
-t devfs
51 mount none
/tmp
-t ramfs
This page took 0.044065 seconds and 5 git commands to generate.