6 mtdpart
="$(find_mtd_part $partname)"
8 rom
=$
(awk '/squashfs/ {print $2}' /proc
/mounts
)
9 jffs
=$
(awk '/jffs2/ {print $2}' /proc
/mounts
)
11 dupe
() { # <new_root> <old_root>
13 echo -n "creating directories... "
17 echo "./dev ./jffs ./mnt ./proc ./tmp"
18 # xdev skips mounted directories
23 echo -n "setting up symlinks... "
24 for file in $
(cd $2; find .
-xdev -type f
;); do
26 .
/rom
/note
) ;; #nothing
28 .
/usr
/lib
/ipkg
/info
/*) cp -af $2/$file $file;;
29 *) ln -sf /rom
/${file#./*} $file;;
32 for file in $
(cd $2; find .
-xdev -type l
;); do
33 cp -af $2/${file#./*} $file
38 pivot
() { # <new_root> <old_root>
39 mount
-o move
/proc
$1/proc
&& \
40 pivot_root
$1 $1$2 && {
41 mount
-o move
$2/dev
/dev
42 mount
-o move
$2/tmp
/tmp
43 mount
-o move
$2/jffs
/jffs
2>&-
48 fopivot
() { # <rw_root> <ro_root> <dupe?>
51 mount
-t mini_fo
-o base
=/,sto
=$1 $1 /mnt
2>&- && root
=/mnt
54 mount |
grep "on $1 type" 2>&- 1>&- || mount
-o bind $1 $1
63 fopivot
/tmp
/root
/rom
1
66 # invoked as an executable
67 [ "${0##*/}" = "firstboot" ] && {
69 [ -z "$mtdpart" ] && {
70 echo "MTD partition not found."
75 echo "You do not have a squashfs partition; aborting"
76 echo "(firstboot cannot be run on jffs2 based firmwares)"
80 [ "$1" = "switch2jffs" ] && {
83 # try to avoid fs changing while copying
84 mount
-o remount
,ro none
/ 2>&-
86 # copy ramoverlay to jffs2
87 mount
"$mtdpart" /rom
/jffs
-t jffs2
88 echo -n "copying files ... "
89 cp -a /tmp
/root
/* /rom
/jffs
2>&-
92 # switch back to squashfs (temporarily)
93 # and park the ramdisk ontop of /tmp/root
95 mount
-o move
/mnt
/tmp
/root
97 # /jffs is the overlay
98 # /rom is the readonly
101 # try to get rid of /tmp/root
102 # this will almost always fail
103 umount
/tmp
/root
2>&-
110 # script run manually
111 [ \
! -z "$jffs" ] && {
112 echo "firstboot has already been run"
113 echo "jffs2 partition is mounted, only resetting files"
114 grep mini_fo
/proc
/filesystems
>&-
120 mount
-o remount
$jffs / 2>&-
125 mtd erase
"$partname"
126 mount
"$mtdpart" /jffs
-t jffs2
This page took 0.054436 seconds and 5 git commands to generate.