Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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