home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / misc / src / trees / supp / pcmcia.cgz / pcmcia / etc / pcmcia / scsi.opts < prev   
Text File  |  1997-03-24  |  557b  |  24 lines

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