summaryrefslogtreecommitdiffstats
path: root/rules/bluez.in
blob: cf489a4d949753d8813202a2ac492d471aef93a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
## SECTION=communication

menuconfig BLUEZ
	tristate "bluez                         "
	select DBUS
	select GLIB
	select LIBUSB_COMPAT	if BLUEZ_USB
	select ALSA_LIB		if BLUEZ_ALSA
	select GSTREAMER	if BLUEZ_GSTREAMER
	select GST_PLUGINS_BASE	if BLUEZ_GSTREAMER
	select PYGOBJECT	if BLUEZ_INSTALL_TESTSCRIPTS
	select DBUS_PYTHON	if BLUEZ_INSTALL_TESTSCRIPTS
	help
	  official Linux Bluetooth protocol stack

if BLUEZ

config BLUEZ_SYSTEMD_UNIT
	bool
	default y
	depends on SYSTEMD
	prompt "install systemd unit files for bluez"

config BLUEZ_USB
	bool "USB support"
	default y
	help
	  Build bluez with USB support. Only disable this if your Bluetooth
	  adapter is not connected via USB (for example with an UART or SDIO).

config BLUEZ_ALSA
	bool "alsa support"
	help
	  install bluez-alsa modules

config BLUEZ_GSTREAMER
	bool "gstreamer support"
	help
	  install libgstbluetooth
	  
config BLUEZ_UTILS
	bool "install bluez tools"
	help
	  install ciptool l2ping hcitool rctest rfcomm sdptool

config BLUEZ_INSTALL_TESTSCRIPTS
	bool "install testscripts"
	help
	  install test scripts that allow to set up bluetooth connections

endif