diff options
-rw-r--r-- | init.d/mount-ro.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/init.d/mount-ro.in b/init.d/mount-ro.in index 589f1a2c..3553b7a3 100644 --- a/init.d/mount-ro.in +++ b/init.d/mount-ro.in @@ -34,6 +34,9 @@ start() local m="/dev|/dev/.*|/proc|/proc.*|/sys|/sys/.*|/run|${rc_svcdir}" x= fs= m="$m|/bin|/sbin|/lib(32|64)?|/libexec" + if [ -e "$rc_svcdir"/usr_premounted ]; then + m="$m|/usr" + fi # RC_NO_UMOUNTS is an env var that can be set by plugins local IFS="$IFS:" for x in $no_umounts $RC_NO_UMOUNTS; do |