summaryrefslogtreecommitdiffstats
path: root/package/bluez5_utils/Config.in
diff options
context:
space:
mode:
authorMarcin Bis <marcin@bis.org.pl>2014-03-31 10:58:00 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-08-02 12:55:39 +0200
commitbb1a0c0c96da28d815ed5861320db364b08f58a0 (patch)
treee3a0897f81dd02846c11f2ff3e2fa773ece098d2 /package/bluez5_utils/Config.in
parent2526d2f0d12bc77c67853a48ec6c381a3827d9c6 (diff)
downloadbuildroot-bb1a0c0c96da28d815ed5861320db364b08f58a0.tar.gz
buildroot-bb1a0c0c96da28d815ed5861320db364b08f58a0.zip
bluez5_utils: new package
This patch adds Bluez 5.x. Its API is not backwards compatible with BlueZ 4 so it is packaged separately from BlueZ 4. BlueZ utils will use systemd and/or udev if enabled. It contains a hook to install the GATT support tool, which is always built but not installed by default. [Thomas: - Add dependency on 3.4 kernel headers - Add options for OBEX support and client support, to make the libical and readline dependencies optional. - Rewrap Config.in help text. - Adapt indentation in .mk file. - Bump to version 5.21. - Use BR2_PACKAGE_HAS_UDEV instead of BR2_PACKAGE_UDEV.] Signed-off-by: Marcin Bis <marcin@bis.org.pl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/bluez5_utils/Config.in')
-rw-r--r--package/bluez5_utils/Config.in67
1 files changed, 67 insertions, 0 deletions
diff --git a/package/bluez5_utils/Config.in b/package/bluez5_utils/Config.in
new file mode 100644
index 0000000000..62bac5d680
--- /dev/null
+++ b/package/bluez5_utils/Config.in
@@ -0,0 +1,67 @@
+config BR2_PACKAGE_BLUEZ5_UTILS
+ bool "bluez-utils 5.x"
+ depends on !BR2_avr32
+ depends on BR2_USE_WCHAR # libglib2
+ depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, libglib2
+ depends on BR2_USE_MMU # dbus
+ depends on !BR2_PACKAGE_BLUEZ_UTILS # conflicts with 4.x version
+ depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
+ select BR2_PACKAGE_DBUS
+ select BR2_PACKAGE_LIBGLIB2
+ help
+ bluez utils version 5.x
+
+ With this release BlueZ only supports the new Bluetooth
+ Management kernel interface (introduced in Linux 3.4).
+
+ For Low Energy support at least kernel version 3.5 is
+ needed.
+
+ The API is not backward compatible with BlueZ 4.
+
+ Bluez utils will use systemd and/or udev if enabled.
+
+ http://www.bluez.org
+ http://www.kernel.org/pub/linux/bluetooth
+
+if BR2_PACKAGE_BLUEZ5_UTILS
+
+config BR2_PACKAGE_BLUEZ5_UTILS_OBEX
+ bool "build OBEX support"
+ select BR2_PACKAGE_LIBICAL
+ help
+ Enable the OBEX support in Bluez 5.x.
+
+config BR2_PACKAGE_BLUEZ5_UTILS_CLIENT
+ bool "build CLI client"
+ select BR2_PACKAGE_READLINE
+ help
+ Enable the Bluez 5.x command line client.
+
+config BR2_PACKAGE_BLUEZ5_UTILS_EXPERIMENTAL
+ bool "build experimental plugins"
+ help
+ Build BlueZ 5.x experimental plugins (SAP, NFC, ...).
+
+config BR2_PACKAGE_BLUEZ5_UTILS_TEST
+ bool "build tests"
+ help
+ Build BlueZ 5.x tests
+
+config BR2_PACKAGE_BLUEZ5_UTILS_GATTTOOL
+ bool "install GATT tool"
+ help
+ Generic Attribute Profile (GATT) support. This provides
+ profile discovery and description services for Bluetooth Low
+ Energy. This will install the gatttool utility.
+
+ It is always built with BlueZ 5.x, but upstream choose not
+ to install it by default.
+
+endif
+
+comment "bluez5-utils needs a toolchain w/ wchar, threads, headers >= 3.4"
+ depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
+
+comment "bluez5-utils conflicts with older bluez-utils version"
+ depends on BR2_PACKAGE_BLUEZ_UTILS
OpenPOWER on IntegriCloud