home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / etc / pcmcia / scsi.opts < prev    next >
Text File  |  1999-10-31  |  453b  |  19 lines

  1. # SCSI adapter configuration
  2. #
  3. # The address format is "scheme,type,socket,channel,id,lun[,part]".
  4. #
  5. # For multi-partition devices, first return list of partitions in
  6. # $PARTS.  Then, we'll get called for each partition.
  7. #
  8. # This example will mount any CD-ROM on /cdrom, if possible.
  9. #
  10. case "$ADDRESS" in
  11. *,sr,*,*,*,*)
  12.     PARTS=""
  13.     DO_FSTAB="y" ; DO_FSCK="n" ; DO_MOUNT="n"
  14.     FSTYPE="iso9660"
  15.     OPTS="ro,noauto"
  16.     MOUNTPT="/cdrom"
  17.     ;;
  18. esac
  19.