summaryrefslogtreecommitdiffstats
path: root/package/block-mount/files
diff options
context:
space:
mode:
Diffstat (limited to 'package/block-mount/files')
-rw-r--r--package/block-mount/files/mount.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/package/block-mount/files/mount.sh b/package/block-mount/files/mount.sh
index 3056c73aa..d82a92783 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/rom-disabled"
fi
fi
@@ -59,6 +63,9 @@ config_mount_by_section() {
[ "$target" = "/overlay" ] && {
rootfs_found=1
}
+ [ "$target" = "/rom" ] && {
+ rootfs_found=1
+ }
}
return 0
}