diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2021-06-22 13:21:15 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-06-26 11:27:16 +0100 |
commit | cf6d214bd833c593829c18e849a26fe2f0fd2821 (patch) | |
tree | 46c79b2c2a8b875e8901a0918a5e74a6b4ee2662 /meta/recipes-connectivity/bluez5 | |
parent | 50954707fdcd555f5a403dda2c132b35e8617639 (diff) | |
download | poky-cf6d214bd833c593829c18e849a26fe2f0fd2821.tar.gz |
bluez5: upgrade 5.58 -> 5.59
(From OE-Core rev: 9c42e84c68990b49c71f0fafb3575bf9683414b4)
(From OE-Core rev: ecb10add0ea8f8e046fcba2bcb5ce2a86234218d)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/bluez5')
-rw-r--r-- | meta/recipes-connectivity/bluez5/bluez5.inc | 2 | ||||
-rw-r--r-- | meta/recipes-connectivity/bluez5/bluez5/0001-Makefile.am-add-missing-mkdir-for-ell-shared.patch | 25 | ||||
-rw-r--r-- | meta/recipes-connectivity/bluez5/bluez5_5.59.bb (renamed from meta/recipes-connectivity/bluez5/bluez5_5.58.bb) | 2 |
3 files changed, 2 insertions, 27 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc index 635cad813e..f2d9a4f937 100644 --- a/meta/recipes-connectivity/bluez5/bluez5.inc +++ b/meta/recipes-connectivity/bluez5/bluez5.inc | |||
@@ -45,6 +45,7 @@ PACKAGECONFIG[deprecated] = "--enable-deprecated,--disable-deprecated" | |||
45 | PACKAGECONFIG[mesh] = "--enable-mesh --enable-external-ell,--disable-mesh, json-c ell" | 45 | PACKAGECONFIG[mesh] = "--enable-mesh --enable-external-ell,--disable-mesh, json-c ell" |
46 | PACKAGECONFIG[btpclient] = "--enable-btpclient --enable-external-ell,--disable-btpclient, ell" | 46 | PACKAGECONFIG[btpclient] = "--enable-btpclient --enable-external-ell,--disable-btpclient, ell" |
47 | PACKAGECONFIG[udev] = "--enable-udev,--disable-udev,udev" | 47 | PACKAGECONFIG[udev] = "--enable-udev,--disable-udev,udev" |
48 | PACKAGECONFIG[manpages] = "--enable-manpages,--disable-manpages,python3-docutils-native" | ||
48 | 49 | ||
49 | SRC_URI = "${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ | 50 | SRC_URI = "${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ |
50 | file://init \ | 51 | file://init \ |
@@ -53,7 +54,6 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ | |||
53 | file://0001-tests-add-a-target-for-building-tests-without-runnin.patch \ | 54 | file://0001-tests-add-a-target-for-building-tests-without-runnin.patch \ |
54 | file://0001-test-gatt-Fix-hung-issue.patch \ | 55 | file://0001-test-gatt-Fix-hung-issue.patch \ |
55 | file://0001-audio-Rename-pause-funciton-to-avoid-shadowing-glibc.patch \ | 56 | file://0001-audio-Rename-pause-funciton-to-avoid-shadowing-glibc.patch \ |
56 | file://0001-Makefile.am-add-missing-mkdir-for-ell-shared.patch \ | ||
57 | " | 57 | " |
58 | S = "${WORKDIR}/bluez-${PV}" | 58 | S = "${WORKDIR}/bluez-${PV}" |
59 | 59 | ||
diff --git a/meta/recipes-connectivity/bluez5/bluez5/0001-Makefile.am-add-missing-mkdir-for-ell-shared.patch b/meta/recipes-connectivity/bluez5/bluez5/0001-Makefile.am-add-missing-mkdir-for-ell-shared.patch deleted file mode 100644 index 03b42f73cb..0000000000 --- a/meta/recipes-connectivity/bluez5/bluez5/0001-Makefile.am-add-missing-mkdir-for-ell-shared.patch +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | From d341ba650af1b7068d9ad034732b4f41b91bb2c1 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
3 | Date: Sun, 25 Apr 2021 18:56:41 +0200 | ||
4 | Subject: [PATCH] Makefile.am: add missing mkdir for ell/shared | ||
5 | |||
6 | This addresses build errors out of source tree. | ||
7 | |||
8 | Upstream-Status: Backport | ||
9 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
10 | --- | ||
11 | Makefile.am | 1 + | ||
12 | 1 file changed, 1 insertion(+) | ||
13 | |||
14 | diff --git a/Makefile.am b/Makefile.am | ||
15 | index be5d5c7..72ad425 100644 | ||
16 | --- a/Makefile.am | ||
17 | +++ b/Makefile.am | ||
18 | @@ -623,6 +623,7 @@ lib/bluetooth/%.h: lib/%.h | ||
19 | $(AM_V_GEN)$(LN_S) -f $(abspath $<) $@ | ||
20 | |||
21 | ell/shared: Makefile | ||
22 | + $(AM_V_at)$(MKDIR_P) ell | ||
23 | $(AM_V_GEN)for f in $(ell_shared) ; do \ | ||
24 | if [ ! -f $$f ] ; then \ | ||
25 | $(LN_S) -t ell -f $(abs_srcdir)/../ell/$$f ; \ | ||
diff --git a/meta/recipes-connectivity/bluez5/bluez5_5.58.bb b/meta/recipes-connectivity/bluez5/bluez5_5.59.bb index eb8475ec1e..7842eac76d 100644 --- a/meta/recipes-connectivity/bluez5/bluez5_5.58.bb +++ b/meta/recipes-connectivity/bluez5/bluez5_5.59.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require bluez5.inc | 1 | require bluez5.inc |
2 | 2 | ||
3 | SRC_URI[sha256sum] = "c8065e75a5eb67236849ef68a354b1700540305a8c88ef0a0fd6288f19daf1f1" | 3 | SRC_URI[sha256sum] = "046b95b386d0bfb2a16311fe799d517ee7735045512d89902c4ed701db477316" |
4 | 4 | ||
5 | # These issues have kernel fixes rather than bluez fixes so exclude here | 5 | # These issues have kernel fixes rather than bluez fixes so exclude here |
6 | CVE_CHECK_WHITELIST += "CVE-2020-12352 CVE-2020-24490" | 6 | CVE_CHECK_WHITELIST += "CVE-2020-12352 CVE-2020-24490" |