Kconfig 1.6 KB

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