From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RjiWJ-0003m4-Q7 for garchives@archives.gentoo.org; Sun, 08 Jan 2012 02:30:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D4A721C021; Sun, 8 Jan 2012 02:29:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 369D521C021 for ; Sun, 8 Jan 2012 02:29:55 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7FF0C1B4004 for ; Sun, 8 Jan 2012 02:29:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id B7D2480042 for ; Sun, 8 Jan 2012 02:29:53 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/linuxrc X-VCS-Directories: defaults/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: ae2a061ca74e33d0b1ecfc32c778d0b3f9970c12 Date: Sun, 8 Jan 2012 02:29:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 65393dcc-ed7b-4ef6-b1ef-505807716d85 X-Archives-Hash: 6618eea63c65546ebefb14fbc11392a8 commit: ae2a061ca74e33d0b1ecfc32c778d0b3f9970c12 Author: Robin H. Johnson gentoo org> AuthorDate: Sun Jan 8 02:29:48 2012 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Jan 8 02:29:48 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/genkernel.git= ;a=3Dcommit;h=3Dae2a061c Disable the /usr mount code until OpenRC section is ready, so that it goe= s to read-write properly. It was usable in systemd already... --- defaults/linuxrc | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/defaults/linuxrc b/defaults/linuxrc index 599c0d1..6bdaea1 100755 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -702,10 +702,14 @@ else fi =20 # Mount the additional things as required by udev & systemd -if [ ! -f ${NEW_ROOT}/etc/initramfs.mounts ]; then - fslist=3D"/usr" -else +if [ -f ${NEW_ROOT}/etc/initramfs.mounts ]; then fslist=3D$(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=3D"/usr"=20 + fslist=3D"" fi =20 for fs in $fslist; do