Minor thinko in devpts check.
authorRobin H. Johnson <robbat2@gentoo.org>
Tue, 24 Jul 2012 17:28:57 +0000 (17:28 +0000)
committerRobin H. Johnson <robbat2@gentoo.org>
Tue, 24 Jul 2012 17:29:28 +0000 (17:29 +0000)
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
ChangeLog
defaults/initrd.scripts

index de4fac882f27f2a0f444fef1a3ee1e9cbc8d658a..10f8cfafa33f466835ae44ae523a7fce2ee2ef6d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,7 +4,10 @@
 # - 2008-2011 Various authors (see AUTHORS)
 # Distributed under the GPL v2
 # $Id$
-  
+
+  24 Jul 2012; Robin H. Johnson <robbat2@gentoo.org> defaults/initrd.scripts:
+  Minor thinko in devpts check.
+
   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
index fb64f84b3d021c0c88ab45636701e2fef5cf332c..814919b1a5dd7d1622e7444a652d6b097003677c 100755 (executable)
@@ -313,7 +313,7 @@ mount_devfs () {
        fi
 
        # http://git.busybox.net/busybox/plain/docs/mdev.txt
-       if awk 'BEGIN{m=1;} /devtmpfs/{if($3 == "devpts") {m=0;} } END { exit m;}' /proc/mounts; then
+       if awk 'BEGIN{m=1;} /devpts/{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