aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/class/Kconfig
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/usb/class/Kconfig
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'drivers/usb/class/Kconfig')
-rw-r--r--drivers/usb/class/Kconfig86
1 files changed, 86 insertions, 0 deletions
diff --git a/drivers/usb/class/Kconfig b/drivers/usb/class/Kconfig
new file mode 100644
index 000000000000..0561d0234f23
--- /dev/null
+++ b/drivers/usb/class/Kconfig
@@ -0,0 +1,86 @@
1#
2# USB Class driver configuration
3#
4comment "USB Device Class drivers"
5 depends on USB
6
7config USB_AUDIO
8 tristate "USB Audio support"
9 depends on USB && SOUND
10 help
11 Say Y here if you want to connect USB audio equipment such as
12 speakers to your computer's USB port. You only need this if you use
13 the OSS sound driver; ALSA has its own option for usb audio support.
14
15 To compile this driver as a module, choose M here: the
16 module will be called audio.
17
18comment "USB Bluetooth TTY can only be used with disabled Bluetooth subsystem"
19 depends on USB && BT
20
21config USB_BLUETOOTH_TTY
22 tristate "USB Bluetooth TTY support"
23 depends on USB && BT=n
24 ---help---
25 This driver implements a nonstandard tty interface to a Bluetooth
26 device that can be used only by specialized Bluetooth HCI software.
27
28 Say Y here if you want to use OpenBT Bluetooth stack (available
29 at <http://developer.axis.com/software>), or other TTY based
30 Bluetooth stacks, and want to connect a USB Bluetooth device
31 to your computer's USB port.
32
33 Do *not* enable this driver if you want to use generic Linux
34 Bluetooth support.
35
36 If in doubt, say N here.
37
38 To compile this driver as a module, choose M here: the
39 module will be called bluetty.
40
41config USB_MIDI
42 tristate "USB MIDI support"
43 depends on USB && SOUND
44 ---help---
45 Say Y here if you want to connect a USB MIDI device to your
46 computer's USB port. This driver is for devices that comply with
47 'Universal Serial Bus Device Class Definition for MIDI Device'.
48
49 The following devices are known to work:
50 * Steinberg USB2MIDI
51 * Roland MPU64
52 * Roland PC-300
53 * Roland SC8850
54 * Roland UM-1
55 * Roland UM-2
56 * Roland UA-100
57 * Yamaha MU1000
58
59 To compile this driver as a module, choose M here: the
60 module will be called usb-midi.
61
62config USB_ACM
63 tristate "USB Modem (CDC ACM) support"
64 depends on USB
65 ---help---
66 This driver supports USB modems and ISDN adapters which support the
67 Communication Device Class Abstract Control Model interface.
68 Please read <file:Documentation/usb/acm.txt> for details.
69
70 If your modem only reports "Cls=ff(vend.)" in the descriptors in
71 /proc/bus/usb/devices, then your modem will not work with this
72 driver.
73
74 To compile this driver as a module, choose M here: the
75 module will be called cdc-acm.
76
77config USB_PRINTER
78 tristate "USB Printer support"
79 depends on USB
80 help
81 Say Y here if you want to connect a USB printer to your computer's
82 USB port.
83
84 To compile this driver as a module, choose M here: the
85 module will be called usblp.
86