X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/a97ca43d14937930ccbfbe30a222d5c9df201825..697cd0b66726d3d6eb14e71c157f0789c0be14d6:/package/block-mount/files/mount.sh diff --git a/package/block-mount/files/mount.sh b/package/block-mount/files/mount.sh index 3056c73aa..e96174ce9 100644 --- a/package/block-mount/files/mount.sh +++ b/package/block-mount/files/mount.sh @@ -41,10 +41,14 @@ config_mount_by_section() { if [ "$find_rootfs" = "1" ]; then if [ "$is_rootfs" -eq 1 ]; then target=/overlay + elif [ "$target" = "/" ]; then + target=/rom fi else if [ "$is_rootfs" -eq 1 ] || [ "$target" = "/overlay" ]; then target=/tmp/overlay-disabled + elif [ "$target" = "/" ] || [ "$target" = "/rom" ]; then + target="/tmp/whole_root-disabled" fi fi @@ -59,6 +63,9 @@ config_mount_by_section() { [ "$target" = "/overlay" ] && { rootfs_found=1 } + [ "$target" = "/rom" ] && { + rootfs_found=1 + } } return 0 }