Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. help
  9. Bluetooth is low-cost, low-power, short-range wireless technology.
  10. It was designed as a replacement for cables and other short-range
  11. technologies like IrDA. Bluetooth operates in personal area range
  12. that typically extends up to 10 meters. More information about
  13. Bluetooth can be found at <http://www.bluetooth.com/>.
  14. Linux Bluetooth subsystem consist of several layers:
  15. Bluetooth Core (HCI device and connection manager, scheduler)
  16. HCI Device drivers (Interface to the hardware)
  17. SCO Module (SCO audio links)
  18. L2CAP Module (Logical Link Control and Adaptation Protocol)
  19. RFCOMM Module (RFCOMM Protocol)
  20. BNEP Module (Bluetooth Network Encapsulation Protocol)
  21. CMTP Module (CAPI Message Transport Protocol)
  22. HIDP Module (Human Interface Device Protocol)
  23. Say Y here to compile Bluetooth support into the kernel or say M to
  24. compile it as module (bluetooth).
  25. To use Linux Bluetooth subsystem, you will need several user-space
  26. utilities like hciconfig and hcid. These utilities and updates to
  27. Bluetooth kernel modules are provided in the BlueZ packages.
  28. For more information, see <http://www.bluez.org/>.
  29. config BT_L2CAP
  30. tristate "L2CAP protocol support"
  31. depends on BT
  32. select CRC16
  33. help
  34. L2CAP (Logical Link Control and Adaptation Protocol) provides
  35. connection oriented and connection-less data transport. L2CAP
  36. support is required for most Bluetooth applications.
  37. Say Y here to compile L2CAP support into the kernel or say M to
  38. compile it as module (l2cap).
  39. config BT_SCO
  40. tristate "SCO links support"
  41. depends on BT
  42. help
  43. SCO link provides voice transport over Bluetooth. SCO support is
  44. required for voice applications like Headset and Audio.
  45. Say Y here to compile SCO support into the kernel or say M to
  46. compile it as module (sco).
  47. source "net/bluetooth/rfcomm/Kconfig"
  48. source "net/bluetooth/bnep/Kconfig"
  49. source "net/bluetooth/cmtp/Kconfig"
  50. source "net/bluetooth/hidp/Kconfig"
  51. source "drivers/bluetooth/Kconfig"