Update of /cvsroot/devil-linux/build/config/etc/initrd
In directory sc8-pr-cvs1:/tmp/cvs-serv5932/config/etc/initrd
Modified Files:
linuxrc
Log Message:
get rid of some error messages
Index: linuxrc
===================================================================
RCS file: /cvsroot/devil-linux/build/config/etc/initrd/linuxrc,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- linuxrc 8 Nov 2003 21:04:53 -0000 1.45
+++ linuxrc 9 Nov 2003 16:04:45 -0000 1.46
@@ -58,8 +58,6 @@
# mount proc
mount -n -t proc none /proc
-# mount devfs
-mount -n -t devfs none /dev
# create the floppy drives, somehow devfs doesn't do it in initrd
mknod /dev/fd0 b 2 0
mknod /dev/fd1 b 2 0
@@ -183,6 +181,9 @@
echo "Mounting SHM FS on /cdrom/shm"
mount -n -o bind /shm /cdrom/shm
umount /shm
+
+echo "Mounting DEV FS on /cdrom/dev"
+mount -n -t devfs none /cdrom/dev
# unmount proc because the final system will mount it again
umount /proc
|