2005-04-17 00:20:36 +02:00
|
|
|
#
|
|
|
|
# Bluetooth subsystem configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig BT
|
|
|
|
tristate "Bluetooth subsystem support"
|
2009-06-14 15:21:25 +02:00
|
|
|
depends on NET && !S390
|
|
|
|
depends on RFKILL || !RFKILL
|
2011-06-22 19:08:11 +02:00
|
|
|
select CRYPTO
|
2005-04-17 00:20:36 +02:00
|
|
|
help
|
|
|
|
Bluetooth is low-cost, low-power, short-range wireless technology.
|
|
|
|
It was designed as a replacement for cables and other short-range
|
|
|
|
technologies like IrDA. Bluetooth operates in personal area range
|
|
|
|
that typically extends up to 10 meters. More information about
|
|
|
|
Bluetooth can be found at <http://www.bluetooth.com/>.
|
|
|
|
|
|
|
|
Linux Bluetooth subsystem consist of several layers:
|
|
|
|
Bluetooth Core (HCI device and connection manager, scheduler)
|
|
|
|
HCI Device drivers (Interface to the hardware)
|
|
|
|
SCO Module (SCO audio links)
|
|
|
|
L2CAP Module (Logical Link Control and Adaptation Protocol)
|
|
|
|
RFCOMM Module (RFCOMM Protocol)
|
|
|
|
BNEP Module (Bluetooth Network Encapsulation Protocol)
|
|
|
|
CMTP Module (CAPI Message Transport Protocol)
|
|
|
|
HIDP Module (Human Interface Device Protocol)
|
2011-06-09 23:50:43 +02:00
|
|
|
SMP Module (Security Manager Protocol)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
Say Y here to compile Bluetooth support into the kernel or say M to
|
|
|
|
compile it as module (bluetooth).
|
|
|
|
|
|
|
|
To use Linux Bluetooth subsystem, you will need several user-space
|
2011-02-07 22:15:43 +01:00
|
|
|
utilities like hciconfig and bluetoothd. These utilities and updates
|
|
|
|
to Bluetooth kernel modules are provided in the BlueZ packages. For
|
|
|
|
more information, see <http://www.bluez.org/>.
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2011-02-26 02:41:25 +01:00
|
|
|
if BT != n
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config BT_L2CAP
|
2011-02-07 23:08:52 +01:00
|
|
|
bool "L2CAP protocol support"
|
2009-08-25 01:32:50 +02:00
|
|
|
select CRC16
|
2011-06-09 23:50:43 +02:00
|
|
|
select CRYPTO
|
|
|
|
select CRYPTO_BLKCIPHER
|
|
|
|
select CRYPTO_AES
|
|
|
|
select CRYPTO_ECB
|
2005-04-17 00:20:36 +02:00
|
|
|
help
|
|
|
|
L2CAP (Logical Link Control and Adaptation Protocol) provides
|
|
|
|
connection oriented and connection-less data transport. L2CAP
|
|
|
|
support is required for most Bluetooth applications.
|
|
|
|
|
2011-06-09 23:50:43 +02:00
|
|
|
Also included is support for SMP (Security Manager Protocol) which
|
|
|
|
is the security layer on top of LE (Low Energy) links.
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config BT_SCO
|
2011-02-07 23:08:52 +01:00
|
|
|
bool "SCO links support"
|
2005-04-17 00:20:36 +02:00
|
|
|
help
|
|
|
|
SCO link provides voice transport over Bluetooth. SCO support is
|
|
|
|
required for voice applications like Headset and Audio.
|
|
|
|
|
2011-02-26 02:41:25 +01:00
|
|
|
endif
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "net/bluetooth/rfcomm/Kconfig"
|
|
|
|
|
|
|
|
source "net/bluetooth/bnep/Kconfig"
|
|
|
|
|
|
|
|
source "net/bluetooth/cmtp/Kconfig"
|
|
|
|
|
|
|
|
source "net/bluetooth/hidp/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/bluetooth/Kconfig"
|
|
|
|
|