Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 6LOWPAN_IPHC if BT_6LOWPAN
  9. select CRC16
  10. select CRYPTO
  11. select CRYPTO_BLKCIPHER
  12. select CRYPTO_AES
  13. select CRYPTO_ECB
  14. select CRYPTO_SHA256
  15. help
  16. Bluetooth is low-cost, low-power, short-range wireless technology.
  17. It was designed as a replacement for cables and other short-range
  18. technologies like IrDA. Bluetooth operates in personal area range
  19. that typically extends up to 10 meters. More information about
  20. Bluetooth can be found at <http://www.bluetooth.com/>.
  21. Linux Bluetooth subsystem consist of several layers:
  22. Bluetooth Core
  23. HCI device and connection manager, scheduler
  24. SCO audio links
  25. L2CAP (Logical Link Control and Adaptation Protocol)
  26. SMP (Security Manager Protocol) on LE (Low Energy) links
  27. HCI Device drivers (Interface to the hardware)
  28. RFCOMM Module (RFCOMM Protocol)
  29. BNEP Module (Bluetooth Network Encapsulation Protocol)
  30. CMTP Module (CAPI Message Transport Protocol)
  31. HIDP Module (Human Interface Device Protocol)
  32. Say Y here to compile Bluetooth support into the kernel or say M to
  33. compile it as module (bluetooth).
  34. To use Linux Bluetooth subsystem, you will need several user-space
  35. utilities like hciconfig and bluetoothd. These utilities and updates
  36. to Bluetooth kernel modules are provided in the BlueZ packages. For
  37. more information, see <http://www.bluez.org/>.
  38. config BT_6LOWPAN
  39. bool "Bluetooth 6LoWPAN support"
  40. depends on BT && IPV6
  41. help
  42. IPv6 compression over Bluetooth.
  43. source "net/bluetooth/rfcomm/Kconfig"
  44. source "net/bluetooth/bnep/Kconfig"
  45. source "net/bluetooth/cmtp/Kconfig"
  46. source "net/bluetooth/hidp/Kconfig"
  47. source "drivers/bluetooth/Kconfig"