| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 | menu "Bluetooth support and drivers"depends on ADK_TARGET_WITH_USB || ADK_TARGET_WITH_MINIPCI || ADK_TARGET_WITH_SDIOconfig ADK_KERNEL_BT	prompt "Bluetooth network stack"	tristate	default n	help	  Bluetooth is low-cost, low-power, short-range wireless technology.	  It was designed as a replacement for cables and other short-range	  technologies like IrDA.  Bluetooth operates in personal area range	  that typically extends up to 10 meters.  More information about	  Bluetooth can be found at <http://www.bluetooth.com/>.	  Linux Bluetooth subsystem consist of several layers:	     Bluetooth Core (HCI device and connection manager, scheduler)	     HCI Device drivers (Interface to the hardware)	     SCO Module (SCO audio links)	     L2CAP Module (Logical Link Control and Adaptation Protocol)	     RFCOMM Module (RFCOMM Protocol)  	     BNEP Module (Bluetooth Network Encapsulation Protocol)	     CMTP Module (CAPI Message Transport Protocol)	     HIDP Module (Human Interface Device Protocol)config ADK_KERNEL_BT_L2CAP	prompt "L2CAP protocol support"	boolean	select ADK_KERNEL_BT	default n	help	  L2CAP (Logical Link Control and Adaptation Protocol) provides	  connection oriented and connection-less data transport.  L2CAP	  support is required for most Bluetooth applications.config ADK_KERNEL_BT_SCO	prompt "SCO link support"	boolean	select ADK_KERNEL_BT	default n	help	  SCO link provides voice transport over Bluetooth.  SCO support is	  required for voice applications like Headset and Audio.config ADK_KERNEL_BT_RFCOMM	prompt "RFCOMM protocol support"	tristate	select ADK_KERNEL_BT	depends on ADK_KERNEL_BT_L2CAP	default n	help	  RFCOMM provides connection oriented stream transport.  RFCOMM	  support is required for Dialup Networking, OBEX and other Bluetooth	  applications.config ADK_KERNEL_BT_BNEP	prompt "BNEP protocol support"	tristate	select ADK_KERNEL_BT	depends on ADK_KERNEL_BT_L2CAP	default n	help	  BNEP (Bluetooth Network Encapsulation Protocol) is Ethernet	  emulation layer on top of Bluetooth.  BNEP is required for	  Bluetooth PAN (Personal Area Network).config ADK_KERNEL_BT_HIDP	prompt "HIDP protocol support"	tristate	select ADK_KERNEL_INPUT	select ADK_KERNEL_HID	select ADK_KERNEL_BT	depends on ADK_KERNEL_BT_L2CAP	default n	help	  HIDP (Human Interface Device Protocol) is a transport layer	  for HID reports.  HIDP is required for the Bluetooth Human	  Interface Device Profile.config ADK_KERNEL_BT_HCIBTSDIO	prompt "HCI SDIO driver"	tristate	select ADK_KERNEL_BT	depends on ADK_TARGET_WITH_SDIO	default m if ADK_TARGET_SYSTEM_CUBOX_I && !ADK_KERNEL_VERSION_3_14	default n	help	  Bluetooth HCI SDIO driver.	  This driver is required if you want to use Bluetooth devices with	  SDIO interface.config ADK_KERNEL_BT_HCIBTUSB	prompt "HCI USB driver"	tristate	select ADK_KERNEL_BT	depends on ADK_TARGET_WITH_USB	default n	help	  Bluetooth HCI USB driver.	  This driver is required if you want to use Bluetooth devices with	  USB interface.config ADK_KERNEL_BT_HCIUART	prompt "HCI UART driver"	tristate	select ADK_KERNEL_BT	default n	help	  Bluetooth HCI UART driver.	  This driver is required if you want to use Bluetooth devices with	  serial port interface. You will also need this driver if you have 	  UART based Bluetooth PCMCIA and CF devices like Xircom Credit Card 	  adapter and BrainBoxes Bluetooth PC Card.config ADK_KERNEL_BT_MRVL	prompt "Marvell driver"	tristate	select ADK_KERNEL_BT	select ADK_PACKAGE_BRCM_BLUETOOTH	default m if ADK_TARGET_SYSTEM_CUBOX_I && !ADK_KERNEL_VERSION_3_14	default n	help	  Bluetooth Marvell driver.config ADK_KERNEL_BT_MRVL_SDIO	prompt "Marvell SDIO driver"	tristate	depends on ADK_KERNEL_BT_MRVL	depends on ADK_KERNEL_BT_HCIBTSDIO	depends on ADK_TARGET_WITH_SDIO	default m if ADK_TARGET_SYSTEM_CUBOX_I && !ADK_KERNEL_VERSION_3_14	default n	help	  Bluetooth Marvell driver.config ADK_KERNEL_BT_HCIBCM203X	prompt "HCI BCM203x USB driver"	tristate	select ADK_KERNEL_FW_LOADER	select ADK_KERNEL_BT_HCIBTUSB	select ADK_KERNEL_BT	depends on ADK_TARGET_WITH_USB	default n	help	  Bluetooth HCI BCM203x USB driver.	  This driver provides the firmware loading mechanism for the Broadcom	  Blutonium based devices.config ADK_KERNEL_BT_HCIBPA10X	prompt "HCI BPA10x USB driver"	tristate	select ADK_KERNEL_BT	select ADK_KERNEL_BT_HCIBTUSB	default n	help	  Bluetooth HCI BPA10x USB driver.	  This driver provides support for the Digianswer BPA 100/105 Bluetooth	  sniffer devices.endmenu
 |