X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/4dbef44bbe1e83c15e58bd4eb6f3aa61fb6af025..ca385d45a3d565989aa7f6a6f4cf454b918435f4:/package/base-files/files/lib/functions/boot.sh diff --git a/package/base-files/files/lib/functions/boot.sh b/package/base-files/files/lib/functions/boot.sh index a4ec7be5b..6bdd7a149 100644 --- a/package/base-files/files/lib/functions/boot.sh +++ b/package/base-files/files/lib/functions/boot.sh @@ -125,7 +125,9 @@ pivot() { # fopivot() { # root=$1 { - if grep -q mini_fo /proc/filesystems; then + if grep -q overlay /proc/filesystems; then + mount -t overlayfs -olowerdir=/,upperdir=$1 "overlayfs:$1" /mnt && root=/mnt + elif grep -q mini_fo /proc/filesystems; then mount -t mini_fo -o base=/,sto=$1 "mini_fo:$1" /mnt 2>&- && root=/mnt else mount --bind / /mnt