Kconfig (9a64e8e0ace51b309fdcff4b4754b3649250382a) | Kconfig (f61870ee6f8cc77a844e22f26c58028078df7167) |
---|---|
1# 2# USB Storage driver configuration 3# 4 5comment "NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may" 6comment "also be needed; see USB_STORAGE Help for more info" 7 depends on USB 8 --- 199 unchanged lines hidden (view full) --- 208 The USB Attached SCSI protocol is supported by some USB 209 storage devices. It permits higher performance by supporting 210 multiple outstanding commands. 211 212 If you don't know whether you have a UAS device, it is safe to 213 say 'Y' or 'M' here and the kernel will use the right driver. 214 215 If you compile this driver as a module, it will be named uas. | 1# 2# USB Storage driver configuration 3# 4 5comment "NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may" 6comment "also be needed; see USB_STORAGE Help for more info" 7 depends on USB 8 --- 199 unchanged lines hidden (view full) --- 208 The USB Attached SCSI protocol is supported by some USB 209 storage devices. It permits higher performance by supporting 210 multiple outstanding commands. 211 212 If you don't know whether you have a UAS device, it is safe to 213 say 'Y' or 'M' here and the kernel will use the right driver. 214 215 If you compile this driver as a module, it will be named uas. |
216 217config USB_LIBUSUAL 218 bool "The shared table of common (or usual) storage devices" 219 depends on USB 220 help 221 This module contains a table of common (or usual) devices 222 for usb-storage and ub drivers, and allows to switch binding 223 of these devices without rebuilding modules. 224 225 Typical syntax of /etc/modprobe.d/*conf is: 226 227 options libusual bias="ub" 228 229 If unsure, say N. | |