Kconfig 2.1 KB

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