diff options
author | Anders Darander <anders@chargestorm.se> | 2011-08-15 12:58:51 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-17 15:14:58 +0100 |
commit | 08a5e246894947b2ab339a1659170f23ad139d24 (patch) | |
tree | fee7f1e8b54291c8101c91eff71799928a6dd8b8 /meta/recipes-connectivity/connman | |
parent | 17f8e984cf3a8a81856aab7e171e64b7e3b5f9e5 (diff) | |
download | poky-08a5e246894947b2ab339a1659170f23ad139d24.tar.gz |
connman: use DISTRO_FEATURES to enable wifi and bluetooth
As wifi and bluetooth is set in DISTRO_FEATURES, connman should respect this during configuring.
(From OE-Core rev: 869a1efee685d59c762b965b98ac9c247be68c29)
Signed-off-by: Anders Darander <anders@chargestorm.se>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/connman')
-rw-r--r-- | meta/recipes-connectivity/connman/connman_0.75.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/connman/connman_0.75.bb b/meta/recipes-connectivity/connman/connman_0.75.bb index aeff439e88..5a7b28429a 100644 --- a/meta/recipes-connectivity/connman/connman_0.75.bb +++ b/meta/recipes-connectivity/connman/connman_0.75.bb | |||
@@ -8,8 +8,8 @@ EXTRA_OECONF += "\ | |||
8 | --enable-threads \ | 8 | --enable-threads \ |
9 | --enable-loopback \ | 9 | --enable-loopback \ |
10 | --enable-ethernet \ | 10 | --enable-ethernet \ |
11 | --enable-wifi \ | 11 | ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi', '--disable-wifi', d)} \ |
12 | --enable-bluetooth \ | 12 | ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \ |
13 | --enable-dnsproxy \ | 13 | --enable-dnsproxy \ |
14 | --disable-dhclient \ | 14 | --disable-dhclient \ |
15 | --enable-test \ | 15 | --enable-test \ |