diff options
author | Peter A. Bigot <pab@pabigot.com> | 2020-08-25 10:34:01 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-26 09:04:04 +0100 |
commit | 810fa7928df8974c37f4b478936e275e439917ab (patch) | |
tree | e903c4d6b5b9538b9a953a54847e7c4a94942c1e /meta/recipes-connectivity/bluez5 | |
parent | f89bbd40a5aca3c14de6846aaeeb10c6e360ab97 (diff) | |
download | poky-810fa7928df8974c37f4b478936e275e439917ab.tar.gz |
bluez5: fix builds that require ell support
Shortly after the recipe was updated to add ell as a mesh dependency
the way ell was integrated into bluez5 was changed. BlueZ requires
ell only for mesh and for btpclient (external test programs). It will
be ignored unless either mesh or btpclient are selected.
ell can be supplied externally, or it can be copied into the bluez
build directory from an existing sibling source directory. Since
bitbake builds do not provide a sibling source directory tell bluez to
look for it as an external library in the conditions where it's
required.
(From OE-Core rev: f22b4eba98b3707d7f6daa4277414cecb3e5ee6b)
Signed-off-by: Peter A. Bigot <pab@pabigot.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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/bluez5/bluez5.inc b/meta/recipes-connectivity/bluez5/bluez5.inc index eee7a53cd6..4c1156c67c 100644 --- a/meta/recipes-connectivity/bluez5/bluez5.inc +++ b/meta/recipes-connectivity/bluez5/bluez5.inc | |||
@@ -42,8 +42,8 @@ PACKAGECONFIG[sixaxis] = "--enable-sixaxis,--disable-sixaxis" | |||
42 | PACKAGECONFIG[tools] = "--enable-tools,--disable-tools" | 42 | PACKAGECONFIG[tools] = "--enable-tools,--disable-tools" |
43 | PACKAGECONFIG[threads] = "--enable-threads,--disable-threads" | 43 | PACKAGECONFIG[threads] = "--enable-threads,--disable-threads" |
44 | PACKAGECONFIG[deprecated] = "--enable-deprecated,--disable-deprecated" | 44 | PACKAGECONFIG[deprecated] = "--enable-deprecated,--disable-deprecated" |
45 | PACKAGECONFIG[mesh] = "--enable-mesh,--disable-mesh, json-c ell" | 45 | PACKAGECONFIG[mesh] = "--enable-mesh --enable-external-ell,--disable-mesh, json-c ell" |
46 | PACKAGECONFIG[btpclient] = "--enable-btpclient,--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 | 48 | ||
49 | SRC_URI = "${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ | 49 | SRC_URI = "${KERNELORG_MIRROR}/linux/bluetooth/bluez-${PV}.tar.xz \ |