summaryrefslogtreecommitdiffstats
path: root/drivers/usb/Config.in
blob: cd614ba1cb7068c5fa481dc072eb6d184d0aa7f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# USB device configuration
#
mainmenu_option next_comment
comment 'USB support'

tristate 'Support for USB' CONFIG_USB
if [ ! "$CONFIG_USB" = "n" ]; then

comment 'USB Controllers'
   dep_tristate '  UHCI (Intel PIIX4, VIA, and others) support' CONFIG_USB_UHCI $CONFIG_USB
   dep_tristate '  OHCI-HCD (Compaq, iMacs, OPTi, SiS, ALi, and others) support' CONFIG_USB_OHCI_HCD $CONFIG_USB

comment 'Miscellaneous USB options'
   if [ "$CONFIG_PROC_FS" != "n" ]; then
      bool '  /proc/bus/usb support' CONFIG_USB_PROC
   fi

comment 'USB Devices'
   dep_tristate '  USB Printer support' CONFIG_USB_PRINTER $CONFIG_USB
   dep_tristate '  USB Scanner support' CONFIG_USB_SCANNER $CONFIG_USB
   dep_tristate '  USB Audio support' CONFIG_USB_AUDIO $CONFIG_USB
   dep_tristate '  USB Communications Device Class (ACM) support' CONFIG_USB_ACM $CONFIG_USB
   dep_tristate '  USB Serial Converter support' CONFIG_USB_SERIAL $CONFIG_USB
   dep_tristate '  USB CPiA Camera support' CONFIG_USB_CPIA $CONFIG_USB
   dep_tristate '  USB OV511 Camera support' CONFIG_USB_OV511 $CONFIG_USB
   dep_tristate '  USB Kodak DC-2xx Camera support' CONFIG_USB_DC2XX $CONFIG_USB
   dep_tristate '  USB SCSI (mass storage) support' CONFIG_USB_SCSI $CONFIG_USB
   if [ "$CONFIG_USB_SCSI" != "n" ]; then
      bool '    USB SCSI verbose debug' CONFIG_USB_SCSI_DEBUG
   fi
   dep_tristate '  EZUSB Firmware downloader' CONFIG_USB_EZUSB $CONFIG_USB
   dep_tristate '  USS720 parport driver' CONFIG_USB_USS720 $CONFIG_USB $CONFIG_PARPORT
   dep_tristate '  DABUSB driver' CONFIG_USB_DABUSB $CONFIG_USB 

comment 'USB HID'
   dep_tristate '  USB Human Interface Device (HID) support' CONFIG_USB_HID $CONFIG_USB
   if [ "$CONFIG_USB_HID" != "y" ]; then
      dep_tristate '  USB HIDBP Keyboard support' CONFIG_USB_KBD $CONFIG_USB
      dep_tristate '  USB HIDBP Mouse support' CONFIG_USB_MOUSE $CONFIG_USB
   fi
   dep_tristate '  Keyboard support' CONFIG_INPUT_KEYBDEV $CONFIG_USB
   dep_tristate '  Mouse support' CONFIG_INPUT_MOUSEDEV $CONFIG_USB
   if [ "$CONFIG_INPUT_MOUSEDEV" != "n" ]; then
      bool '      Mix all mice into one device' CONFIG_INPUT_MOUSEDEV_MIX
   fi
   dep_tristate '  Joystick support' CONFIG_INPUT_JOYDEV $CONFIG_USB
   dep_tristate '  Event interface support' CONFIG_INPUT_EVDEV $CONFIG_USB
fi

endmenu