Kconfig 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #
  2. # Bluetooth subsystem configuration
  3. #
  4. menuconfig BT
  5. tristate "Bluetooth subsystem support"
  6. depends on NET && !S390
  7. depends on RFKILL || !RFKILL
  8. select CRYPTO
  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. 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. SMP Module (Security Manager Protocol)
  25. Say Y here to compile Bluetooth support into the kernel or say M to
  26. compile it as module (bluetooth).
  27. To use Linux Bluetooth subsystem, you will need several user-space
  28. utilities like hciconfig and bluetoothd. These utilities and updates
  29. to Bluetooth kernel modules are provided in the BlueZ packages. For
  30. more information, see <http://www.bluez.org/>.
  31. if BT != n
  32. config BT_L2CAP
  33. bool "L2CAP protocol support"
  34. select CRC16
  35. select CRYPTO
  36. select CRYPTO_BLKCIPHER
  37. select CRYPTO_AES
  38. select CRYPTO_ECB
  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. Also included is support for SMP (Security Manager Protocol) which
  44. is the security layer on top of LE (Low Energy) links.
  45. config BT_SCO
  46. bool "SCO links support"
  47. help
  48. SCO link provides voice transport over Bluetooth. SCO support is
  49. required for voice applications like Headset and Audio.
  50. endif
  51. source "net/bluetooth/rfcomm/Kconfig"
  52. source "net/bluetooth/bnep/Kconfig"
  53. source "net/bluetooth/cmtp/Kconfig"
  54. source "net/bluetooth/hidp/Kconfig"
  55. source "drivers/bluetooth/Kconfig"