Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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 CRC16
  9. select CRYPTO
  10. select CRYPTO_BLKCIPHER
  11. select CRYPTO_AES
  12. select CRYPTO_CMAC
  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_BREDR
  39. bool "Bluetooth Classic (BR/EDR) features"
  40. depends on BT
  41. default y
  42. source "net/bluetooth/rfcomm/Kconfig"
  43. source "net/bluetooth/bnep/Kconfig"
  44. source "net/bluetooth/cmtp/Kconfig"
  45. source "net/bluetooth/hidp/Kconfig"
  46. config BT_HS
  47. bool "Bluetooth High Speed (HS) features"
  48. depends on BT_BREDR
  49. default y
  50. config BT_LE
  51. bool "Bluetooth Low Energy (LE) features"
  52. depends on BT
  53. default y
  54. config BT_6LOWPAN
  55. tristate "Bluetooth 6LoWPAN support"
  56. depends on BT_LE && 6LOWPAN
  57. help
  58. IPv6 compression over Bluetooth Low Energy.
  59. config BT_SELFTEST
  60. bool "Bluetooth self testing support"
  61. depends on BT && DEBUG_KERNEL
  62. help
  63. Run self tests when initializing the Bluetooth subsystem. This
  64. is a developer option and can cause significant delay when booting
  65. the system.
  66. When the Bluetooth subsystem is built as module, then the test
  67. cases are run first thing at module load time. When the Bluetooth
  68. subsystem is compiled into the kernel image, then the test cases
  69. are run late in the initcall hierarchy.
  70. config BT_SELFTEST_ECDH
  71. bool "ECDH test cases"
  72. depends on BT_LE && BT_SELFTEST
  73. help
  74. Run test cases for ECDH cryptographic functionality used by the
  75. Bluetooth Low Energy Secure Connections feature.
  76. config BT_SELFTEST_SMP
  77. bool "SMP test cases"
  78. depends on BT_LE && BT_SELFTEST
  79. help
  80. Run test cases for SMP cryptographic functionality, including both
  81. legacy SMP as well as the Secure Connections features.
  82. config BT_DEBUGFS
  83. bool "Export Bluetooth internals in debugfs"
  84. depends on BT && DEBUG_FS
  85. default y
  86. help
  87. Provide extensive information about internal Bluetooth states
  88. in debugfs.
  89. source "drivers/bluetooth/Kconfig"