Disable the /usr mount code until OpenRC section is ready, so that it goes to read...
authorRobin H. Johnson <robbat2@gentoo.org>
Sun, 8 Jan 2012 02:29:48 +0000 (02:29 +0000)
committerRobin H. Johnson <robbat2@gentoo.org>
Sun, 8 Jan 2012 02:29:48 +0000 (02:29 +0000)
defaults/linuxrc

index 599c0d161c2b5c97acfec579412d5cbcd397edc4..6bdaea1b20c86237ce7c4150287499247fe37c33 100755 (executable)
@@ -702,10 +702,14 @@ else
 fi
 
 # Mount the additional things as required by udev & systemd
-if [ ! -f ${NEW_ROOT}/etc/initramfs.mounts ]; then
-       fslist="/usr"
-else
+if [ -f ${NEW_ROOT}/etc/initramfs.mounts ]; then
        fslist=$(get_mounts_list)
+else
+       # Disabled until the new OpenRC is ready to go.
+       # Otherwise users will get /usr mounted RO, and it will NOT transition to
+       # RW correctly.
+       #fslist="/usr" 
+       fslist=""
 fi
 
 for fs in $fslist; do