blob: 19a76c0bddda7868e553b54f3d698d45732bc981 (
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
52
|
#
# USB device configuration
#
# NOTE NOTE NOTE! This is still considered extremely experimental.
# Right now hubs, mice and keyboards work - at least with UHCI.
# But that may be more a lucky coincidence than anything else..
#
mainmenu_option next_comment
comment 'USB drivers - not for the faint of heart'
tristate 'Support for USB (EXPERIMENTAL!)' CONFIG_USB
if [ ! "$CONFIG_USB" = "n" ]; then
comment 'USB Controllers'
dep_tristate ' UHCI (Intel PIIX4 and others) support' CONFIG_USB_UHCI \
$CONFIG_USB
dep_tristate ' OHCI (Compaq and some others) support' CONFIG_USB_OHCI \
$CONFIG_USB
if [ "$CONFIG_USB_OHCI" != "n" ]; then
bool ' Enable tons of OHCI debugging output' CONFIG_USB_OHCI_DEBUG
fi
dep_tristate ' OHCI-HCD (other OHCI opt. Virt. Root Hub) support' \
CONFIG_USB_OHCI_HCD $CONFIG_USB
if [ "$CONFIG_USB_OHCI_HCD" != "n" ]; then
bool ' OHCI-HCD Virtual Root Hub' CONFIG_USB_OHCI_VROOTHUB
fi
comment 'Miscellaneous USB options'
bool ' Enable lots of ISOC debugging output' CONFIG_USB_DEBUG_ISOC
if [ "$CONFIG_PROC_FS" != "n" ]; then
bool ' Preliminary /proc/bus/usb support' CONFIG_USB_PROC
fi
dep_tristate ' EZUSB Firmware downloader' CONFIG_USB_EZUSB $CONFIG_USB
comment 'USB Devices'
dep_tristate ' USB hub support (Required!)' CONFIG_USB_HUB $CONFIG_USB
dep_tristate ' USB mouse support' CONFIG_USB_MOUSE $CONFIG_USB
dep_tristate ' USB HP scanner support' CONFIG_USB_HP_SCANNER $CONFIG_USB
dep_tristate ' USB keyboard support' CONFIG_USB_KBD $CONFIG_USB
dep_tristate ' USB audio parsing support' CONFIG_USB_AUDIO $CONFIG_USB
dep_tristate ' USB Communications Device Class (ACM) support' CONFIG_USB_ACM $CONFIG_USB
dep_tristate ' USB Printer support' CONFIG_USB_PRINTER $CONFIG_USB
dep_tristate ' USB Belkin and Peracom serial support' CONFIG_USB_SERIAL $CONFIG_USB
dep_tristate ' USB CPiA Camera support' CONFIG_USB_CPIA $CONFIG_USB
dep_tristate ' USB SCSI Support' CONFIG_USB_SCSI $CONFIG_USB
if [ "$CONFIG_USB_SCSI" != "n" ]; then
bool ' USB SCSI verbose debug' CONFIG_USB_SCSI_DEBUG
fi
dep_tristate ' USS720 parport driver' CONFIG_USB_USS720 $CONFIG_USB $CONFIG_PARPORT
fi
endmenu
|