]> code.ossystems Code Review - openembedded-core.git/commitdiff
connman: enable TI shared transport plugin when wifi or bluetooth are requested
authorKoen Kooi <koen@dominion.thruhere.net>
Fri, 4 May 2012 07:54:06 +0000 (09:54 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 4 May 2012 14:54:07 +0000 (15:54 +0100)
This plugin manages the firmware loading for the TI wl12xx series of bluetooth/wifi/fm chips.

The double --enable-tist when both bluetooth and wireless are enabled is ugly, but harmless

The background on the plugin: https://bugs.meego.com/show_bug.cgi?id=8418

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-connectivity/connman/connman.inc
meta/recipes-connectivity/connman/connman_0.79.bb

index bfe66208eeeac0d472be9679d3c6482fa181c402..8b27cfb0d430d14964aa982f6d81eba968e63929 100644 (file)
@@ -28,8 +28,8 @@ EXTRA_OECONF += "\
     --enable-threads \
     --enable-loopback \
     --enable-ethernet \
-    ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi', '--disable-wifi', d)} \
-    ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \
+    ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi --enable-tist', '--disable-wifi', d)} \
+    ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth --enable-tist', '--disable-bluetooth', d)} \
     --enable-dnsproxy \
     --enable-ofono \
     --enable-tools \
index 4c57dab80d8042a21fb3f9511bdc35e62c63b6a3..d7f22b94a1ee6e9e5d6e9375bf55364abef2844f 100644 (file)
@@ -11,4 +11,4 @@ SRC_URI  = "git://git.kernel.org/pub/scm/network/connman/connman.git \
             file://test-set-ipv6-method-api-fix.patch \
             file://connman"
 S = "${WORKDIR}/git"
-PR = "r3"
+PR = "r4"