Fix typo in previous commit.
authorRichard Yao <ryao@cs.stonybrook.edu>
Tue, 17 Jul 2012 20:22:40 +0000 (16:22 -0400)
committerRichard Yao <ryao@cs.stonybrook.edu>
Tue, 17 Jul 2012 20:22:40 +0000 (16:22 -0400)
defaults/initrd.scripts

index a2edeeec5db880ee1222facf32a4f2e56aacf652..46364def8c742bea29f65900e71a66a665e9418a 100755 (executable)
@@ -307,13 +307,13 @@ mount_devfs () {
        fi
 
        # Options copied from /etc/init.d/udev-mount, should probably be kept in sync
-       if grep -qs grep '^devtmpfs' /proc/mounts; then
+       if grep -qs '^devtmpfs' /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 grep '^devpts' /proc/mounts; then
+       if grep -qs '^devpts' /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