Auf meinem Pi (bplus) lief die Version 5.5. Aus gegebenen Anlass (Covid-Warn-App) wollte ich mal die neueste Version installieren.
Also mal bluez neu compiliert und installiert. Aber nur für den der weiß was er macht (experimental).
Sonst auf das Debian-Update warten 😉
Update von 5.5 auf 5.54 von bluez.org mit folgenden Anpassungen:
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 |
ver 5.54: Fix issue with HOGP to accept data only from bonded devices. Fix issue with A2DP sessions being connected at the same time. Fix issue with class UUID matches before connecting profile. Add support for handling MTU auto-tuning option for AVDTP. Add support for new policy for Just-Works repairing. Add support for Enhanced ATT bearer (EATT). ver 5.53: Fix issue with handling unregistration for advertisment. Fix issue with A2DP and handling recovering process. Fix issue with udpating input device information. Add support for loading blocked keys. ver 5.52: Fix issue with AVDTP session disconnect timeout handling. Mark media endpoint APIs as stable interfaces. ver 5.51: Fix issue with first agent not being registered as default. Fix issue with loading devices without Service Changed CCC. Fix issue with GATT client and extended property reading. Fix issue with handling GATT client invalid read behavior. Fix issue with handling GATT disconnect handler removal. Fix issue with missing GATT/GAP service records for SDP. Fix issue with checking SDP continuation state length. Fix issue with HID device removal on HoG disconnect. Fix issue with AVDTP and session destroy handling. Fix issue with AVCTP and output MTU accounting. Fix issue with AVRCP and creating media items. |
Also dann mal los:
1 2 3 4 5 6 7 8 9 10 11 |
bluetoothctl -v sudo apt-get install python-docutils libdbus-1-dev libglib2.0-dev libudev-dev libical-dev libreadline-dev -y wget www.kernel.org/pub/linux/bluetooth/bluez-5.54.tar.xz tar xvf bluez-5.54.tar.xz && cd bluez-5.54 ./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc --localstatedir=/var --enable-experimental make -j4 sudo make install sudo reboot bluetoothctl -v |