Kconfig.scsi 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. comment "SCSI support type (disk, tape, CD-ROM)"
  2. depends on SCSI
  3. config BLK_DEV_SD
  4. tristate "SCSI disk support"
  5. depends on SCSI
  6. config SD_EXTRA_DEVS
  7. int "Maximum number of SCSI disks that can be loaded as modules"
  8. depends on BLK_DEV_SD
  9. default "40"
  10. config CHR_DEV_ST
  11. tristate "SCSI tape support"
  12. depends on SCSI
  13. config BLK_DEV_SR
  14. tristate "SCSI CD-ROM support"
  15. depends on SCSI
  16. config BLK_DEV_SR_VENDOR
  17. bool "Enable vendor-specific extensions (for SCSI CDROM)"
  18. depends on BLK_DEV_SR
  19. config SR_EXTRA_DEVS
  20. int "Maximum number of CDROM devices that can be loaded as modules"
  21. depends on BLK_DEV_SR
  22. default "2"
  23. config CHR_DEV_SG
  24. tristate "SCSI generic support"
  25. depends on SCSI
  26. comment "Some SCSI devices (e.g. CD jukebox) support multiple LUNs"
  27. depends on SCSI
  28. #if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
  29. config SCSI_DEBUG_QUEUES
  30. bool "Enable extra checks in new queueing code"
  31. depends on SCSI
  32. #fi
  33. config SCSI_MULTI_LUN
  34. bool "Probe all LUNs on each SCSI device"
  35. depends on SCSI
  36. config SCSI_CONSTANTS
  37. bool "Verbose SCSI error reporting (kernel size +=12K)"
  38. depends on SCSI
  39. config SCSI_LOGGING
  40. bool "SCSI logging facility"
  41. depends on SCSI
  42. config SCSI_DEBUG
  43. tristate "SCSI debugging host simulator (EXPERIMENTAL)"
  44. depends on SCSI