patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / net / bluetooth / Kconfig
1 #
2 # Bluetooth subsystem configuration
3 #
4
5 menuconfig BT
6         depends on NET
7         tristate "Bluetooth subsystem support"
8         help
9           Bluetooth is low-cost, low-power, short-range wireless technology.
10           It was designed as a replacement for cables and other short-range
11           technologies like IrDA.  Bluetooth operates in personal area range
12           that typically extends up to 10 meters.  More information about
13           Bluetooth can be found at <http://www.bluetooth.com/>.
14
15           Linux Bluetooth subsystem consist of several layers:
16              Bluetooth Core (HCI device and connection manager, scheduler)
17              HCI Device drivers (Interface to the hardware)
18              SCO Module (SCO audio links)
19              L2CAP Module (Logical Link Control and Adaptation Protocol)
20              RFCOMM Module (RFCOMM Protocol)  
21              BNEP Module (Bluetooth Network Encapsulation Protocol)
22              CMTP Module (CAPI Message Transport Protocol)
23
24           Say Y here to compile Bluetooth support into the kernel or say M to
25           compile it as module (bluetooth).
26
27           To use Linux Bluetooth subsystem, you will need several user-space
28           utilities like hciconfig and hcid.  These utilities and updates to
29           Bluetooth kernel modules are provided in the BlueZ packages.
30           For more information, see <http://www.bluez.org/>.
31
32 config BT_L2CAP
33         tristate "L2CAP protocol support"
34         depends on BT
35         help
36           L2CAP (Logical Link Control and Adaptation Protocol) provides
37           connection oriented and connection-less data transport.  L2CAP
38           support is required for most Bluetooth applications.
39
40           Say Y here to compile L2CAP support into the kernel or say M to
41           compile it as module (l2cap).
42
43 config BT_SCO
44         tristate "SCO links support"
45         depends on BT
46         help
47           SCO link provides voice transport over Bluetooth.  SCO support is
48           required for voice applications like Headset and Audio.
49
50           Say Y here to compile SCO support into the kernel or say M to
51           compile it as module (sco).
52
53 source "net/bluetooth/rfcomm/Kconfig"
54
55 source "net/bluetooth/bnep/Kconfig"
56
57 source "net/bluetooth/cmtp/Kconfig"
58
59 source "drivers/bluetooth/Kconfig"
60