diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-07-24 08:26:43 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-07-24 08:28:44 +0000 |
commit | c924bde4b7accbe1cf3bdba666b615d412c869bf (patch) | |
tree | ade754ff912e8a8b1fb79f2bd5b6332b65460a4d | |
parent | Fix whitespace (diff) | |
download | genkernel-c924bde4b7accbe1cf3bdba666b615d412c869bf.tar.gz genkernel-c924bde4b7accbe1cf3bdba666b615d412c869bf.tar.bz2 genkernel-c924bde4b7accbe1cf3bdba666b615d412c869bf.zip |
Prior commit to only mount devtmpfs and devpts if they were not already mounted made assumptions about the device names they were mounted as. Check the filesystem column of /proc/mounts instead.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | defaults/initrd.scripts | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -4,6 +4,11 @@ # - 2008-2011 Various authors (see AUTHORS) # Distributed under the GPL v2 # $Id$ + + 24 Jul 2012; Robin H. Johnson <robbat2@gentoo.org> defaults/initrd.scripts: + Prior commit to only mount devtmpfs and devpts if they were not already + mounted made assumptions about the device names they were mounted as. Check + the filesystem column of /proc/mounts instead. 21 Jul 2012; Sebastian Pipping <sping@gentoo.org> genkernel: Bump version to 3.4.39 diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts index 4f0ce1b5..fb64f84b 100755 --- a/defaults/initrd.scripts +++ b/defaults/initrd.scripts @@ -307,13 +307,13 @@ mount_devfs () { fi # Options copied from /etc/init.d/udev-mount, should probably be kept in sync - if grep -qs '^devtmpfs' /proc/mounts; then + if awk 'BEGIN{m=1;} /devtmpfs/{if($3 == "devtmpfs") {m=0;} } END { exit m;}' /proc/mounts; then mount -t $devfs -o "exec,nosuid,mode=0755,size=10M" udev /dev \ || bad_msg "Failed to mount /dev as ${devfs}" fi # http://git.busybox.net/busybox/plain/docs/mdev.txt - if grep -qs '^devpts' /proc/mounts; then + if awk 'BEGIN{m=1;} /devtmpfs/{if($3 == "devpts") {m=0;} } END { exit m;}' /proc/mounts; then mkdir -m 0755 /dev/pts mount -t devpts -o gid=5,mode=0620 devpts /dev/pts || bad_msg "Failed to mount /dev/pts" fi |