projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
[package] block-mount: Changed default filesystem for /e/c/fstab to be ext4 instead...
[openwrt.git]
/
package
/
block-extroot
/
files
/
extmount.sh
diff --git
a/package/block-extroot/files/extmount.sh
b/package/block-extroot/files/extmount.sh
index
1d5ebf2
..
44d662e
100644
(file)
--- a/
package/block-extroot/files/extmount.sh
+++ b/
package/block-extroot/files/extmount.sh
@@
-24,3
+24,13
@@
er_load_modules() {
rm -rf /tmp/extroot_modules
}
+pivot_rom() { # <new_root> <old_root>
+ mount -o move /proc $1/proc && \
+ pivot_root $1 $1$2 && {
+ mount -o move $2/dev /dev
+ mount -o move $2/tmp /tmp
+ mount -o move $2/sys /sys 2>&-
+ return 0
+ }
+}
+
This page took
0.03766 seconds
and
4
git commands to generate.