Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # USB Class driver configuration |
| 3 | # |
| 4 | comment "USB Device Class drivers" |
| 5 | depends on USB |
| 6 | |
| 7 | config 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 | |
| 18 | comment "USB Bluetooth TTY can only be used with disabled Bluetooth subsystem" |
| 19 | depends on USB && BT |
| 20 | |
| 21 | config 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 | |
| 41 | config 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 | |
| 62 | config 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 | |
| 77 | config 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 | |