diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-07 09:50:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-07 16:42:48 +0100 |
commit | 18261968c2e870af33c41875284d043ce3ec257e (patch) | |
tree | 145cbb6fa2ad5b1b378724a78f69cccadf1e0595 /meta/recipes-connectivity | |
parent | f22cf1bedf2aa7fb41f98d6165401eb8a8bad17d (diff) | |
download | poky-18261968c2e870af33c41875284d043ce3ec257e.tar.gz |
connman: Disable tist plugin on powerpc
This plugin doesn't build on powerpc due to powerpc's terminal ioctl defintions
being incompatible with assumptions being made by this module. Until someone has
need and can test this on powerpc, disabling is the safest option.
(From OE-Core rev: 672846b0262add037daa2c9e434fe09388b58da8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/connman/connman.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index 8b27cfb0d4..f2da8d9d74 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc | |||
@@ -20,6 +20,9 @@ DEPENDS = "dbus glib-2.0 ppp iptables gnutls \ | |||
20 | ofono \ | 20 | ofono \ |
21 | " | 21 | " |
22 | 22 | ||
23 | TIST = "--enable-tist" | ||
24 | TIST_powerpc = "" | ||
25 | |||
23 | EXTRA_OECONF += "\ | 26 | EXTRA_OECONF += "\ |
24 | ac_cv_path_WPASUPPLICANT=${sbindir}/wpa_supplicant \ | 27 | ac_cv_path_WPASUPPLICANT=${sbindir}/wpa_supplicant \ |
25 | ac_cv_path_PPPD=${sbindir}/pppd \ | 28 | ac_cv_path_PPPD=${sbindir}/pppd \ |
@@ -28,8 +31,8 @@ EXTRA_OECONF += "\ | |||
28 | --enable-threads \ | 31 | --enable-threads \ |
29 | --enable-loopback \ | 32 | --enable-loopback \ |
30 | --enable-ethernet \ | 33 | --enable-ethernet \ |
31 | ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi --enable-tist', '--disable-wifi', d)} \ | 34 | ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi ${TIST}', '--disable-wifi', d)} \ |
32 | ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth --enable-tist', '--disable-bluetooth', d)} \ | 35 | ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth ${TIST}', '--disable-bluetooth', d)} \ |
33 | --enable-dnsproxy \ | 36 | --enable-dnsproxy \ |
34 | --enable-ofono \ | 37 | --enable-ofono \ |
35 | --enable-tools \ | 38 | --enable-tools \ |