Update of /cvsroot/devil-linux/build/config/etc/initrd
In directory sc8-pr-cvs1:/tmp/cvs-serv22302/config/etc/initrd
Modified Files:
linuxrc
Log Message:
- initrd script now uses devfs for finding the floppy drives (this was
broken in older kernels)
- initrd script now searches scsi partitions first for etc.tar.bz2
Index: linuxrc
===================================================================
RCS file: /cvsroot/devil-linux/build/config/etc/initrd/linuxrc,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- linuxrc 17 Dec 2003 14:55:46 -0000 1.50
+++ linuxrc 23 Dec 2003 15:11:38 -0000 1.51
@@ -79,7 +79,8 @@
CDROM_SCSI=`find /dev/scsi/ -name "cd*" 2> /dev/null`
PARTITIONS_IDE=`find /dev/ide/ -name "part*" 2> /dev/null`
PARTITIONS_SCSI=`find /dev/scsi/ -name "part*" 2> /dev/null`
-CONFIG_SRC_LIST="$CDROM_IDE $CDROM_SCSI $PARTITIONS_IDE $PARTITIONS_SCSI /dev/fd0 /dev/fd1"
+FLOPPIES=`find /dev/floppy/ -name "?" 2> /dev/null`
+CONFIG_SRC_LIST="$CDROM_IDE $CDROM_SCSI $PARTITIONS_SCSI $PARTITIONS_IDE $FLOPPIES"
DL_CONFIG_SOURCE=""
echo -e "Loading loop-AES module";
|