Config.in.bluetooth 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. menu "Bluetooth"
  2. depends on ADK_TARGET_WITH_USB
  3. config ADK_KPACKAGE_KMOD_BT
  4. prompt "kmod-bluetooth.................... Bluetooth drivers and network stack"
  5. tristate
  6. default n
  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. config ADK_KPACKAGE_KMOD_BT_L2CAP
  23. prompt "kmod-bluetooth-l2cap.............. L2CAP protocol support"
  24. tristate
  25. default n
  26. depends on ADK_KPACKAGE_KMOD_BT
  27. help
  28. L2CAP (Logical Link Control and Adaptation Protocol) provides
  29. connection oriented and connection-less data transport. L2CAP
  30. support is required for most Bluetooth applications.
  31. config ADK_KPACKAGE_KMOD_BT_SCO
  32. prompt "kmod-bluetooth-sco................ SCO links support"
  33. tristate
  34. default n
  35. depends on ADK_KPACKAGE_KMOD_BT
  36. help
  37. SCO link provides voice transport over Bluetooth. SCO support is
  38. required for voice applications like Headset and Audio.
  39. config ADK_KPACKAGE_KMOD_BT_RFCOMM
  40. prompt "kmod-bluetooth-rfcomm............. RFCOMM protocol support"
  41. tristate
  42. default n
  43. depends on ADK_KPACKAGE_KMOD_BT
  44. depends on ADK_KPACKAGE_KMOD_BT_L2CAP
  45. help
  46. RFCOMM provides connection oriented stream transport. RFCOMM
  47. support is required for Dialup Networking, OBEX and other Bluetooth
  48. applications.
  49. config ADK_KPACKAGE_KMOD_BT_BNEP
  50. prompt "kmod-bluetooth-bnep............... BNEP protocol support"
  51. tristate
  52. default n
  53. depends on ADK_KPACKAGE_KMOD_BT
  54. depends on ADK_KPACKAGE_KMOD_BT_L2CAP
  55. help
  56. BNEP (Bluetooth Network Encapsulation Protocol) is Ethernet
  57. emulation layer on top of Bluetooth. BNEP is required for
  58. Bluetooth PAN (Personal Area Network).
  59. config ADK_KPACKAGE_KMOD_BT_HIDP
  60. prompt "kmod-bluetooth-hidp............... HIDP protocol support"
  61. tristate
  62. default n
  63. depends on !ADK_LINUX_CRIS_FOXBOARD
  64. select ADK_KERNEL_INPUT
  65. select ADK_KERNEL_HID
  66. depends on ADK_KPACKAGE_KMOD_BT
  67. depends on ADK_KPACKAGE_KMOD_BT_L2CAP
  68. help
  69. HIDP (Human Interface Device Protocol) is a transport layer
  70. for HID reports. HIDP is required for the Bluetooth Human
  71. Interface Device Profile.
  72. config ADK_KPACKAGE_KMOD_BT_HCIBTUSB
  73. prompt "kmod-bluetooth-hci-usb............ HCI USB driver"
  74. tristate
  75. default n
  76. depends on ADK_KPACKAGE_KMOD_BT
  77. help
  78. Bluetooth HCI USB driver.
  79. This driver is required if you want to use Bluetooth devices with
  80. USB interface.
  81. config ADK_KPACKAGE_KMOD_BT_HCIUART
  82. prompt "kmod-bluetooth-hci-uart........... HCI UART driver"
  83. tristate
  84. default n
  85. depends on ADK_KPACKAGE_KMOD_BT
  86. help
  87. Bluetooth HCI UART driver.
  88. This driver is required if you want to use Bluetooth devices with
  89. serial port interface. You will also need this driver if you have
  90. UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card
  91. adapter and BrainBoxes Bluetooth PC Card.
  92. config ADK_KPACKAGE_KMOD_BT_HCIBCM203X
  93. prompt "kmod-bluetooth-hci-bcm203x........ HCI BCM203x USB driver"
  94. tristate
  95. default n
  96. select ADK_KPACKAGE_KMOD_FW_LOADER
  97. select ADK_KPACKAGE_KMOD_BT_HCIBTUSB
  98. depends on ADK_KPACKAGE_KMOD_BT
  99. help
  100. Bluetooth HCI BCM203x USB driver.
  101. This driver provides the firmware loading mechanism for the Broadcom
  102. Blutonium based devices.
  103. config ADK_KPACKAGE_KMOD_BT_HCIBPA10X
  104. prompt "kmod-bluetooth-hci-bpa10x......... HCI BPA10x USB driver"
  105. tristate
  106. default n
  107. depends on ADK_KPACKAGE_KMOD_BT
  108. help
  109. Bluetooth HCI BPA10x USB driver.
  110. This driver provides support for the Digianswer BPA 100/105 Bluetooth
  111. sniffer devices.
  112. endmenu