Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Bluetooth subsystem configuration |
| 3 | # |
| 4 | |
| 5 | menuconfig BT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | tristate "Bluetooth subsystem support" |
Marcel Holtmann | 1a09718 | 2009-06-14 15:21:25 +0200 | [diff] [blame] | 7 | depends on NET && !S390 |
| 8 | depends on RFKILL || !RFKILL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | help |
| 10 | Bluetooth is low-cost, low-power, short-range wireless technology. |
| 11 | It was designed as a replacement for cables and other short-range |
| 12 | technologies like IrDA. Bluetooth operates in personal area range |
| 13 | that typically extends up to 10 meters. More information about |
| 14 | Bluetooth can be found at <http://www.bluetooth.com/>. |
| 15 | |
| 16 | Linux Bluetooth subsystem consist of several layers: |
| 17 | Bluetooth Core (HCI device and connection manager, scheduler) |
| 18 | HCI Device drivers (Interface to the hardware) |
| 19 | SCO Module (SCO audio links) |
| 20 | L2CAP Module (Logical Link Control and Adaptation Protocol) |
| 21 | RFCOMM Module (RFCOMM Protocol) |
| 22 | BNEP Module (Bluetooth Network Encapsulation Protocol) |
| 23 | CMTP Module (CAPI Message Transport Protocol) |
| 24 | HIDP Module (Human Interface Device Protocol) |
| 25 | |
| 26 | Say Y here to compile Bluetooth support into the kernel or say M to |
| 27 | compile it as module (bluetooth). |
| 28 | |
| 29 | To use Linux Bluetooth subsystem, you will need several user-space |
Gustavo F. Padovan | a0019bc | 2011-02-07 19:15:43 -0200 | [diff] [blame] | 30 | utilities like hciconfig and bluetoothd. These utilities and updates |
| 31 | to Bluetooth kernel modules are provided in the BlueZ packages. For |
| 32 | more information, see <http://www.bluez.org/>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Gustavo F. Padovan | d45dcef | 2011-02-25 22:41:25 -0300 | [diff] [blame] | 34 | if BT != n |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | config BT_L2CAP |
Gustavo F. Padovan | 6427451 | 2011-02-07 20:08:52 -0200 | [diff] [blame] | 37 | bool "L2CAP protocol support" |
Randy Dunlap | cbe86b9 | 2009-08-24 16:32:50 -0700 | [diff] [blame] | 38 | select CRC16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | help |
| 40 | L2CAP (Logical Link Control and Adaptation Protocol) provides |
| 41 | connection oriented and connection-less data transport. L2CAP |
| 42 | support is required for most Bluetooth applications. |
| 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | config BT_SCO |
Gustavo F. Padovan | 6427451 | 2011-02-07 20:08:52 -0200 | [diff] [blame] | 45 | bool "SCO links support" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | help |
| 47 | SCO link provides voice transport over Bluetooth. SCO support is |
| 48 | required for voice applications like Headset and Audio. |
| 49 | |
Gustavo F. Padovan | d45dcef | 2011-02-25 22:41:25 -0300 | [diff] [blame] | 50 | endif |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | source "net/bluetooth/rfcomm/Kconfig" |
| 53 | |
| 54 | source "net/bluetooth/bnep/Kconfig" |
| 55 | |
| 56 | source "net/bluetooth/cmtp/Kconfig" |
| 57 | |
| 58 | source "net/bluetooth/hidp/Kconfig" |
| 59 | |
| 60 | source "drivers/bluetooth/Kconfig" |
| 61 | |