Update of /cvsroot/devil-linux/build/config/etc/initrd
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2455/config/etc/initrd
Modified Files:
mount_cdrom
Log Message:
initial check-in of radvd
fixed problem with mounting iso files
Index: mount_cdrom
===================================================================
RCS file: /cvsroot/devil-linux/build/config/etc/initrd/mount_cdrom,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- mount_cdrom 15 Feb 2004 17:49:09 -0000 1.22
+++ mount_cdrom 15 Mar 2004 00:49:02 -0000 1.23
@@ -80,14 +80,13 @@
if [ -e /mnt/bootcd.iso ] ; then
mount -o loop -t iso9660 /mnt/bootcd.iso $1 || return 1
echo $disk > /shm/DL_DEVICE
+ if [ "$3" != "silent" ]; then
+ $YELLOW
+ echo -e "\nFound ISO on $disk"
+ $NORMAL
+ fi
exit 0
fi
- if [ "$3" != "silent" ]; then
- $YELLOW
- echo -e "\nFound ISO on $disk"
- $NORMAL
- fi
- exit 0
else
umount /mnt
fi
|