X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/848953efdfd9623fbc65a4cd11ab51ea46c3cdc0..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 fc93eba49..6bdd7a149 100644 --- a/package/base-files/files/lib/functions/boot.sh +++ b/package/base-files/files/lib/functions/boot.sh @@ -3,7 +3,7 @@ # Copyright (C) 2010 Vertical Communications mount() { - /bin/busybox mount "$@" + /bin/busybox mount -o noatime "$@" } boot_hook_splice_start() { @@ -78,10 +78,10 @@ find_mtd_part() { } jffs2_ready () { - mtdpart="$(find_mtd_part rootfs_data)" - [ -z "$mtdpart" ] && return 1 - magic=$(hexdump $mtdpart -n 4 -e '4/1 "%02x"') - [ "$magic" != "deadc0de" ] + mtdpart="$(find_mtd_part rootfs_data)" + [ -z "$mtdpart" ] && return 1 + magic=$(hexdump $mtdpart -n 4 -e '4/1 "%02x"') + [ "$magic" != "deadc0de" ] } dupe() { # @@ -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 @@ -142,7 +144,7 @@ fopivot() { # ramoverlay() { mkdir -p /tmp/root - mount -t tmpfs root /tmp/root + mount -t tmpfs -o mode=0755 root /tmp/root fopivot /tmp/root /rom 1 }