]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/bluez5_utils/Config.in
Rename BR2_PREFER_STATIC_LIB to BR2_STATIC_LIBS
[coffee/buildroot.git] / package / bluez5_utils / Config.in
1 config BR2_PACKAGE_BLUEZ5_UTILS
2         bool "bluez-utils 5.x"
3         depends on !BR2_avr32
4         depends on BR2_USE_WCHAR # libglib2
5         depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
6         depends on BR2_USE_MMU # dbus
7         depends on BR2_INET_IPV6
8         depends on !BR2_STATIC_LIBS # uses dlfcn
9         depends on !BR2_PACKAGE_BLUEZ_UTILS # conflicts with 4.x version
10         depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
11         select BR2_PACKAGE_DBUS
12         select BR2_PACKAGE_LIBGLIB2
13         help
14           bluez utils version 5.x
15
16           With this release BlueZ only supports the new Bluetooth
17           Management kernel interface (introduced in Linux 3.4).
18
19           For Low Energy support at least kernel version 3.5 is
20           needed.
21
22           The API is not backward compatible with BlueZ 4.
23
24           Bluez utils will use systemd and/or udev if enabled.
25
26           http://www.bluez.org
27           http://www.kernel.org/pub/linux/bluetooth
28
29 if BR2_PACKAGE_BLUEZ5_UTILS
30
31 config BR2_PACKAGE_BLUEZ5_UTILS_OBEX
32         bool "build OBEX support"
33         select BR2_PACKAGE_LIBICAL
34         help
35           Enable the OBEX support in Bluez 5.x.
36
37 config BR2_PACKAGE_BLUEZ5_UTILS_CLIENT
38         bool "build CLI client"
39         select BR2_PACKAGE_READLINE
40         help
41           Enable the Bluez 5.x command line client.
42
43 config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
44         bool "install GATT tool"
45         depends on BR2_PACKAGE_BLUEZ5_UTILS_CLIENT
46         help
47           Generic Attribute Profile (GATT) support. This provides
48           profile discovery and description services for Bluetooth Low
49           Energy.  This will install the gatttool utility.
50
51           It is always built with BlueZ 5.x, but upstream choose not
52           to install it by default.
53
54 config BR2_PACKAGE_BLUEZ5_UTILS_EXPERIMENTAL
55         bool "build experimental plugins"
56         help
57           Build BlueZ 5.x experimental plugins (SAP, NFC, ...).
58
59 config BR2_PACKAGE_BLUEZ5_UTILS_TEST
60         bool "build tests"
61         help
62           Build BlueZ 5.x tests
63
64 endif
65
66 comment "bluez5-utils needs a toolchain w/ wchar, threads, IPv6, headers >= 3.4, dynamic library"
67         depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
68                 !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 || \
69                 BR2_STATIC_LIBS
70         depends on BR2_USE_MMU
71
72 comment "bluez5-utils conflicts with older bluez-utils version"
73         depends on BR2_PACKAGE_BLUEZ_UTILS