fix error output of brctl if bridging is not supported.
[openwrt.git] / package / base-files / files / lib / functions / boot.sh
index 46b4613..96c1c59 100644 (file)
@@ -2,6 +2,10 @@
 # Copyright (C) 2006-2010 OpenWrt.org
 # Copyright (C) 2010 Vertical Communications
 
+mount() {
+       /bin/busybox mount "$@"
+}
+
 boot_hook_add() {
        local hook="${1}_hook"
        local value="$2"
@@ -66,6 +70,7 @@ pivot() { # <new_root> <old_root>
                mount -o move $2/tmp /tmp
                mount -o move $2/sys /sys 2>&-
                mount -o move $2/jffs /jffs 2>&-
+               mount -o move $2/overlay /overlay 2>&-
                return 0
        }
 }
This page took 0.020308 seconds and 4 git commands to generate.