summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/bluez5/bluez5.inc
diff options
context:
space:
mode:
authorMarc Ferland <ferlandm@amotus.ca>2017-04-25 10:48:34 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-05-16 14:08:29 +0100
commitfeacb428b055fd714eb1b15402023f4a726dce54 (patch)
tree71bf4d25b7fae1cc83c891308372729c918ad762 /meta/recipes-connectivity/bluez5/bluez5.inc
parent2865683b6ab82663b1dc03809fc2262173ade4a3 (diff)
downloadpoky-feacb428b055fd714eb1b15402023f4a726dce54.tar.gz
bluez5: Upgrade 5.43 -> 5.44
New feautures/fixes in this version: * fixes to BLE * a new midi plugin * support for single-mode controllers w/o public address * most of the experimental tools have been promoted and are now part of the official tools * 'experimental' has been renamed to 'testing' (hence the addition of the 'testing' package config option) * classic command line tools like hciattach and hciconfig are now enabled by the "--enable-deprecated" configure option (enabled by default for backward compatibility). (From OE-Core rev: dec3620bd13d43575bcfc5d99f40659672d7252b) Signed-off-by: Marc Ferland <ferlandm@amotus.ca> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/bluez5/bluez5.inc')
-rw-r--r--meta/recipes-connectivity/bluez5/bluez5.inc9
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc
index ed75db2113..11cf8fb8ec 100644
--- a/meta/recipes-connectivity/bluez5/bluez5.inc
+++ b/meta/recipes-connectivity/bluez5/bluez5.inc
@@ -14,8 +14,8 @@ RCONFLICTS_${PN} = "bluez4"
14 14
15PACKAGECONFIG ??= "obex-profiles readline" 15PACKAGECONFIG ??= "obex-profiles readline"
16PACKAGECONFIG[obex-profiles] = "--enable-obex,--disable-obex,libical" 16PACKAGECONFIG[obex-profiles] = "--enable-obex,--disable-obex,libical"
17PACKAGECONFIG[experimental] = "--enable-experimental,--disable-experimental,"
18PACKAGECONFIG[readline] = "--enable-client,--disable-client,readline," 17PACKAGECONFIG[readline] = "--enable-client,--disable-client,readline,"
18PACKAGECONFIG[testing] = "--enable-testing,--disable-testing"
19 19
20SRC_URI = "\ 20SRC_URI = "\
21 ${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ 21 ${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \
@@ -31,6 +31,7 @@ inherit autotools pkgconfig systemd update-rc.d distro_features_check ptest
31 31
32EXTRA_OECONF = "\ 32EXTRA_OECONF = "\
33 --enable-tools \ 33 --enable-tools \
34 --enable-deprecated \
34 --disable-cups \ 35 --disable-cups \
35 --enable-test \ 36 --enable-test \
36 --enable-datafiles \ 37 --enable-datafiles \
@@ -41,10 +42,12 @@ EXTRA_OECONF = "\
41# bluez5 builds a large number of useful utilities but does not 42# bluez5 builds a large number of useful utilities but does not
42# install them. Specify which ones we want put into ${PN}-noinst-tools. 43# install them. Specify which ones we want put into ${PN}-noinst-tools.
43NOINST_TOOLS_READLINE ??= "" 44NOINST_TOOLS_READLINE ??= ""
44NOINST_TOOLS_EXPERIMENTAL ??= "" 45NOINST_TOOLS_TESTING ??= ""
46NOINST_TOOLS_BT ??= ""
45NOINST_TOOLS = " \ 47NOINST_TOOLS = " \
46 ${@bb.utils.contains('PACKAGECONFIG', 'readline', '${NOINST_TOOLS_READLINE}', '', d)} \ 48 ${@bb.utils.contains('PACKAGECONFIG', 'readline', '${NOINST_TOOLS_READLINE}', '', d)} \
47 ${@bb.utils.contains('PACKAGECONFIG', 'experimental', '${NOINST_TOOLS_EXPERIMENTAL}', '', d)} \ 49 ${@bb.utils.contains('PACKAGECONFIG', 'testing', '${NOINST_TOOLS_TESTING}', '', d)} \
50 ${NOINST_TOOLS_BT} \
48" 51"
49 52
50do_install_append() { 53do_install_append() {