summaryrefslogtreecommitdiffstats
path: root/rules/bluez.in
blob: 57e0356afb0df4f305b5f1654d6c8c0e7145b0f3 (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
52
53
54
55
56
57
58
## SECTION=communication

menuconfig BLUEZ
	tristate "bluez                         "
	select LIBC_DL
	select LIBC_PTHREAD
	select LIBC_RT
	select DBUS
	select GLIB
	select UDEV
	select LIBICAL			# needed for --enable-obex
	select READLINE			if BLUEZ_CLIENT
	select PYGOBJECT		if BLUEZ_INSTALL_TESTSCRIPTS
	select DBUS_PYTHON		if BLUEZ_INSTALL_TESTSCRIPTS
	help
	  Official Linux Bluetooth protocol stack.
	  For more information refer to <http://www.bluez.org>.

	  Note that you must also enable bluetooth and RFKILL support as well
	  as the respective drivers in your kernel.

if BLUEZ

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

config BLUEZ_TOOLS
	bool "install tools"
	help
	  Install the following tools:
	  
	  bccmd bluemoon btmon btattach hex2hcd l2ping l2test mpris-proxy
	  rctest l2ping rctest

config BLUEZ_TOOLS_DEPRECATED
	depends on BLUEZ_TOOLS
	bool "install deprecated tools"
	help
	  Install the following tools, which have been deprecated by upstream:
	  
	  bccmd bluemoon btattach btmon hex2hcd l2ping l2test mpris-proxy
	  rctest

config BLUEZ_CLIENT
	bool "install client tools"
	help
	  Install the bluetoothctl command line tool

config BLUEZ_INSTALL_TESTSCRIPTS
	bool "install testscripts"
	help
	  Install test scripts that allow to set up bluetooth connections.
	  These scripts are installed to /usr/lib/bluez/test/.

endif