diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /net/bluetooth/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 'net/bluetooth/Kconfig')
-rw-r--r-- | net/bluetooth/Kconfig | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig new file mode 100644 index 000000000000..6929490d095a --- /dev/null +++ b/net/bluetooth/Kconfig | |||
@@ -0,0 +1,63 @@ | |||
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 | HIDP Module (Human Interface Device Protocol) | ||
24 | |||
25 | Say Y here to compile Bluetooth support into the kernel or say M to | ||
26 | compile it as module (bluetooth). | ||
27 | |||
28 | To use Linux Bluetooth subsystem, you will need several user-space | ||
29 | utilities like hciconfig and hcid. These utilities and updates to | ||
30 | Bluetooth kernel modules are provided in the BlueZ packages. | ||
31 | For more information, see <http://www.bluez.org/>. | ||
32 | |||
33 | config BT_L2CAP | ||
34 | tristate "L2CAP protocol support" | ||
35 | depends on BT | ||
36 | help | ||
37 | L2CAP (Logical Link Control and Adaptation Protocol) provides | ||
38 | connection oriented and connection-less data transport. L2CAP | ||
39 | support is required for most Bluetooth applications. | ||
40 | |||
41 | Say Y here to compile L2CAP support into the kernel or say M to | ||
42 | compile it as module (l2cap). | ||
43 | |||
44 | config BT_SCO | ||
45 | tristate "SCO links support" | ||
46 | depends on BT | ||
47 | help | ||
48 | SCO link provides voice transport over Bluetooth. SCO support is | ||
49 | required for voice applications like Headset and Audio. | ||
50 | |||
51 | Say Y here to compile SCO support into the kernel or say M to | ||
52 | compile it as module (sco). | ||
53 | |||
54 | source "net/bluetooth/rfcomm/Kconfig" | ||
55 | |||
56 | source "net/bluetooth/bnep/Kconfig" | ||
57 | |||
58 | source "net/bluetooth/cmtp/Kconfig" | ||
59 | |||
60 | source "net/bluetooth/hidp/Kconfig" | ||
61 | |||
62 | source "drivers/bluetooth/Kconfig" | ||
63 | |||