mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] bluez: version bump 5.50 -> 5.51
@ 2019-10-09  0:11 Andreas Pretzsch
  2019-10-10 11:48 ` Denis OSTERLAND
  0 siblings, 1 reply; 2+ messages in thread
From: Andreas Pretzsch @ 2019-10-09  0:11 UTC (permalink / raw)
  To: ptxdist

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>
---
Quick test with scanning and l2ping (still) works. No further tests.

 rules/bluez.make | 22 +++++++++++-----------
 1 file 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, \
-- 
2.19.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [ptxdist] [PATCH] bluez: version bump 5.50 -> 5.51
  2019-10-09  0:11 [ptxdist] [PATCH] bluez: version bump 5.50 -> 5.51 Andreas Pretzsch
@ 2019-10-10 11:48 ` Denis OSTERLAND
  0 siblings, 0 replies; 2+ messages in thread
From: Denis OSTERLAND @ 2019-10-10 11:48 UTC (permalink / raw)
  To: ptxdist

Hi,

I used btmon, bluetoothd, bluetoothctl and btattach to perform a scan.
This works as well. Another quick test ;-)

Regards Denis

Am Mittwoch, den 09.10.2019, 02:11 +0200 schrieb Andreas Pretzsch:
> 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>
> ---
> Quick test with scanning and l2ping (still) works. No further tests.

Tested-by: Denis Osterland <Denis.Osterland@diehl.com>



Diehl Connectivity Solutions GmbH
Geschäftsführung: Horst Leonberger
Sitz der Gesellschaft: Nürnberg - Registergericht: Amtsgericht
Nürnberg: HRB 32315
___________________________________________________________________________________________________

Der Inhalt der vorstehenden E-Mail ist nicht rechtlich bindend. Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen.
Informieren Sie uns bitte, wenn Sie diese E-Mail faelschlicherweise erhalten haben. Bitte loeschen Sie in diesem Fall die Nachricht.
Jede unerlaubte Form der Reproduktion, Bekanntgabe, Aenderung, Verteilung und/oder Publikation dieser E-Mail ist strengstens untersagt.
- Informationen zum Datenschutz, insbesondere zu Ihren Rechten, erhalten Sie unter https://www.diehl.com/group/de/transparenz-und-informationspflichten/

The contents of the above mentioned e-mail is not legally binding. This e-mail contains confidential and/or legally protected information. Please inform us if you have received this e-mail by
mistake and delete it in such a case. Each unauthorized reproduction, disclosure, alteration, distribution and/or publication of this e-mail is strictly prohibited. 
- For general information on data protection and your respective rights please visit https://www.diehl.com/group/en/transparency-and-information-obligations/
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-10-10 11:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-09  0:11 [ptxdist] [PATCH] bluez: version bump 5.50 -> 5.51 Andreas Pretzsch
2019-10-10 11:48 ` Denis OSTERLAND

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox