scsi.opts 573 B

123456789101112131415161718192021222324
  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. INFO="Default CD-ROM setup"
  13. LINK="/dev/cdrom"
  14. PARTS=""
  15. DO_FSTAB="y" ; DO_FSCK="n" ; DO_MOUNT="n"
  16. FSTYPE="iso9660"
  17. OPTS="ro,noauto"
  18. MOUNTPT="/mnt/cdrom"
  19. # Card eject policy options
  20. NO_CHECK=n
  21. NO_FUSER=n
  22. ;;
  23. esac