summaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorAndreas Pretzsch <apr@cn-eng.de>2019-10-09 02:11:22 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-10-09 08:35:45 +0200
commit3d31c5544854dc291e1b2f4d1ef464e473ab9be3 (patch)
treea595bb287cecb95df8592f0f908c352927df1dcc /rules
parente29e8f0ca8931c6167cfcfbcece597063e0a7952 (diff)
downloadptxdist-3d31c5544854dc291e1b2f4d1ef464e473ab9be3.tar.gz
ptxdist-3d31c5544854dc291e1b2f4d1ef464e473ab9be3.tar.xz
bluez: version bump 5.50 -> 5.51
Update BlueZ 5.50 (Jun 2018) to BlueZ 5.51 (Sep 2019). Quoting the announcement: "There are too many fixes to cover them in the release announcement, but feature-wise the two notable things are improved Bluetooth Mesh support as well as support for the GATT Database Hash feature." There are no relevant new configure options. Explicitly set the new configure option "external-ell" to disabled. It is connected to mesh and/or btpclient, which are already both explicitly disabled. In this context, order them together. The now settable "runstatedir" (default LOCALSTATEDIR/run) should be fine. There are new test programs "test-mesh" and "agent.py". Install them like the rest, if enabled. Both python with shebang. While at it, fix the double-install of the python scripts, with and without executable permissions. The change e6c2932 "bluez: the python tests have no shebang so don't make them executable" was not fully minded in caa56e6 "bluez: version bump 5.30 -> 5.50". There are no bluez patches, so nothing to merge. Signed-off-by: Andreas Pretzsch <apr@cn-eng.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules')
-rw-r--r--rules/bluez.make22
1 files changed, 11 insertions, 11 deletions
diff --git a/rules/bluez.make b/rules/bluez.make
index 39f8f6bbf..0ac2fad49 100644
--- a/rules/bluez.make
+++ b/rules/bluez.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_BLUEZ) += bluez
#
# Paths and names
#
-BLUEZ_VERSION := 5.50
-BLUEZ_MD5 := 860349d2afebf130f772c0f2943b5a27
+BLUEZ_VERSION := 5.51
+BLUEZ_MD5 := ce74914edba5ddfb49a8e6d85d600d22
BLUEZ := bluez-$(BLUEZ_VERSION)
BLUEZ_SUFFIX := tar.gz
BLUEZ_URL := $(call ptx/mirror, KERNEL, bluetooth/$(BLUEZ).$(BLUEZ_SUFFIX))
@@ -56,10 +56,11 @@ BLUEZ_CONF_OPT := $(CROSS_AUTOCONF_USR) \
--$(call ptx/endis, PTXCONF_BLUEZ_TOOLS)-monitor \
--enable-udev \
--disable-cups \
- --disable-mesh \
--disable-midi \
--enable-obex \
+ --disable-mesh \
--disable-btpclient \
+ --disable-external-ell \
--$(call ptx/endis, PTXCONF_BLUEZ_CLIENT)-client \
--enable-systemd \
--enable-datafiles \
@@ -120,14 +121,13 @@ ifdef PTXCONF_BLUEZ_INSTALL_TESTSCRIPTS
$(call install_copy, bluez, 0, 0, 0644, -, \
/usr/lib/bluez/test/$(testdata))$(ptx/nl))
- @$(foreach testprog, bluezutils.py dbusdef.py example-advertisement \
- example-gatt-client example-gatt-server ftp-client \
- list-devices map-client monitor-bluetooth opp-client \
- pbap-client sap_client.py simple-agent simple-endpoint \
- simple-player test-adapter test-device test-discovery \
- test-gatt-profile test-health test-health-sink test-hfp \
- test-manager test-nap test-network test-profile \
- test-sap-server, \
+ @$(foreach testprog, agent.py example-advertisement example-gatt-client \
+ example-gatt-server ftp-client list-devices map-client \
+ monitor-bluetooth opp-client pbap-client simple-agent \
+ simple-endpoint simple-player test-adapter test-device \
+ test-discovery test-gatt-profile test-health \
+ test-health-sink test-hfp test-manager test-mesh \
+ test-nap test-network test-profile test-sap-server, \
$(call install_copy, bluez, 0, 0, 0755, -, \
/usr/lib/bluez/test/$(testprog))$(ptx/nl))
@$(foreach testprog, bluezutils.py dbusdef.py sap_client.py, \