Import 2.3.25pre1
[davej-history.git] / drivers / usb / Config.in
blob19a76c0bddda7868e553b54f3d698d45732bc981
2 # USB device configuration
4 # NOTE NOTE NOTE! This is still considered extremely experimental.
5 # Right now hubs, mice and keyboards work - at least with UHCI.
6 # But that may be more a lucky coincidence than anything else..
8 mainmenu_option next_comment
9 comment 'USB drivers - not for the faint of heart'
11 tristate 'Support for USB (EXPERIMENTAL!)' CONFIG_USB
12 if [ ! "$CONFIG_USB" = "n" ]; then
13 comment 'USB Controllers'
14    dep_tristate '  UHCI (Intel PIIX4 and others) support' CONFIG_USB_UHCI \
15         $CONFIG_USB
16    dep_tristate '  OHCI (Compaq and some others) support' CONFIG_USB_OHCI \
17         $CONFIG_USB
19    if [ "$CONFIG_USB_OHCI" != "n" ]; then
20       bool '    Enable tons of OHCI debugging output' CONFIG_USB_OHCI_DEBUG
21    fi
22    dep_tristate '  OHCI-HCD (other OHCI opt. Virt. Root Hub) support' \
23                 CONFIG_USB_OHCI_HCD $CONFIG_USB
24    if [ "$CONFIG_USB_OHCI_HCD" != "n" ]; then
25       bool '    OHCI-HCD Virtual Root Hub' CONFIG_USB_OHCI_VROOTHUB
26    fi
28 comment 'Miscellaneous USB options'
29    bool '  Enable lots of ISOC debugging output' CONFIG_USB_DEBUG_ISOC
30    if [ "$CONFIG_PROC_FS" != "n" ]; then
31       bool '  Preliminary /proc/bus/usb support' CONFIG_USB_PROC
32    fi
33    dep_tristate '  EZUSB Firmware downloader' CONFIG_USB_EZUSB $CONFIG_USB
35 comment 'USB Devices'
36    dep_tristate '  USB hub support (Required!)' CONFIG_USB_HUB $CONFIG_USB
37    dep_tristate '  USB mouse support' CONFIG_USB_MOUSE $CONFIG_USB
38    dep_tristate '  USB HP scanner support' CONFIG_USB_HP_SCANNER $CONFIG_USB
39    dep_tristate '  USB keyboard support' CONFIG_USB_KBD $CONFIG_USB
40    dep_tristate '  USB audio parsing support' CONFIG_USB_AUDIO $CONFIG_USB
41    dep_tristate '  USB Communications Device Class (ACM) support' CONFIG_USB_ACM $CONFIG_USB
42    dep_tristate '  USB Printer support' CONFIG_USB_PRINTER $CONFIG_USB
43    dep_tristate '  USB Belkin and Peracom serial support' CONFIG_USB_SERIAL $CONFIG_USB
44    dep_tristate '  USB CPiA Camera support' CONFIG_USB_CPIA $CONFIG_USB
45    dep_tristate '  USB SCSI Support' CONFIG_USB_SCSI $CONFIG_USB
46    if [ "$CONFIG_USB_SCSI" != "n" ]; then
47       bool '    USB SCSI verbose debug' CONFIG_USB_SCSI_DEBUG
48    fi
49    dep_tristate '  USS720 parport driver' CONFIG_USB_USS720 $CONFIG_USB $CONFIG_PARPORT
52 endmenu