* [meta-oe][PATCH v2 0/1] connman: conditionally enable bluetooth and wifi
@ 2011-08-17 6:13 Anders Darander
2011-08-17 6:13 ` [meta-oe][PATCH v2 1/1] connman: conditionally enable wifi and bluetooth Anders Darander
2011-08-17 7:22 ` [meta-oe][PATCH v2 0/1] connman: conditionally enable bluetooth and wifi Koen Kooi
0 siblings, 2 replies; 3+ messages in thread
From: Anders Darander @ 2011-08-17 6:13 UTC (permalink / raw)
To: openembedded-devel; +Cc: Anders Darander
Let connman depend and enable wifi and bluetooth, only when these are set in
the DISTRO_FEATURES.
This reduces build-time, and make a non-x11 build succeed, as bluez4 currently
depends on x11 through a dependency chain. (This could/should be fixed in a
later patch).
V2: * Remove unnecessarily set variables BLUEZDEPENDS and WIFIDEPENDS.
The following changes since commit 6d424db5a0f952956a218e82a3ef0c43ebaafd5a:
xcb: add missing bbappends (2011-08-16 13:07:31 +0200)
are available in the git repository at:
git://github.com/darander/meta-oe connman
https://github.com/darander/meta-oe/tree/connman
Anders Darander (1):
connman: conditionally enable wifi and bluetooth
meta-oe/recipes-connectivity/connman/connman.inc | 5 ++++-
.../recipes-connectivity/connman/connman_0.76.bb | 4 ++--
2 files changed, 6 insertions(+), 3 deletions(-)
--
1.7.5.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* [meta-oe][PATCH v2 1/1] connman: conditionally enable wifi and bluetooth
2011-08-17 6:13 [meta-oe][PATCH v2 0/1] connman: conditionally enable bluetooth and wifi Anders Darander
@ 2011-08-17 6:13 ` Anders Darander
2011-08-17 7:22 ` [meta-oe][PATCH v2 0/1] connman: conditionally enable bluetooth and wifi Koen Kooi
1 sibling, 0 replies; 3+ messages in thread
From: Anders Darander @ 2011-08-17 6:13 UTC (permalink / raw)
To: openembedded-devel
Use DISTRO_FEATURES to conditionally depend and enable wifi and bluetooth.
Signed-off-by: Anders Darander <anders@chargestorm.se>
---
meta-oe/recipes-connectivity/connman/connman.inc | 5 ++++-
.../recipes-connectivity/connman/connman_0.76.bb | 4 ++--
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/meta-oe/recipes-connectivity/connman/connman.inc b/meta-oe/recipes-connectivity/connman/connman.inc
index 2652125..eeccf50 100644
--- a/meta-oe/recipes-connectivity/connman/connman.inc
+++ b/meta-oe/recipes-connectivity/connman/connman.inc
@@ -14,7 +14,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
file://src/main.c;beginline=1;endline=20;md5=4b55b550fa6b33cc2055ef30dd262b3e"
# we need to define the depends here, the dynamic stuff is too late
-DEPENDS = "wpa-supplicant dbus glib-2.0 ppp busybox dhcp resolvconf bluez4 iptables gnutls ntp"
+DEPENDS = "dbus glib-2.0 ppp busybox dhcp resolvconf iptables gnutls ntp \
+ ${@base_contains('DISTRO_FEATURES', 'bluetooth','bluez4', '', d)} \
+ ${@base_contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \
+ "
EXTRA_OECONF += "\
ac_cv_path_WPASUPPLICANT=/usr/sbin/wpa_supplicant \
diff --git a/meta-oe/recipes-connectivity/connman/connman_0.76.bb b/meta-oe/recipes-connectivity/connman/connman_0.76.bb
index cb84caa..abae73a 100644
--- a/meta-oe/recipes-connectivity/connman/connman_0.76.bb
+++ b/meta-oe/recipes-connectivity/connman/connman_0.76.bb
@@ -6,8 +6,8 @@ EXTRA_OECONF += "\
--enable-threads \
--enable-loopback \
--enable-ethernet \
- --enable-wifi \
- --enable-bluetooth \
+ ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi', '--disable-wifi', d)} \
+ ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \
--enable-ofono \
--enable-tools \
--disable-polkit \
--
1.7.5.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [meta-oe][PATCH v2 0/1] connman: conditionally enable bluetooth and wifi
2011-08-17 6:13 [meta-oe][PATCH v2 0/1] connman: conditionally enable bluetooth and wifi Anders Darander
2011-08-17 6:13 ` [meta-oe][PATCH v2 1/1] connman: conditionally enable wifi and bluetooth Anders Darander
@ 2011-08-17 7:22 ` Koen Kooi
1 sibling, 0 replies; 3+ messages in thread
From: Koen Kooi @ 2011-08-17 7:22 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 17-08-11 08:13, Anders Darander schreef:
>
> Let connman depend and enable wifi and bluetooth, only when these are set in the DISTRO_FEATURES.
>
> This reduces build-time, and make a non-x11 build succeed, as bluez4 currently depends on x11 through a dependency chain. (This could/should be fixed in a later patch).
>
> V2: * Remove unnecessarily set variables BLUEZDEPENDS and WIFIDEPENDS.
Q'd both, thanks!
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFOS2wiMkyGM64RGpERAsWhAJ0YCG/D/S/U02uqGIpMbS3B9HeO1ACdHKWK
n+AmsYVGs2W6iBOaBOKDTjY=
=RqI1
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-08-17 7:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-17 6:13 [meta-oe][PATCH v2 0/1] connman: conditionally enable bluetooth and wifi Anders Darander
2011-08-17 6:13 ` [meta-oe][PATCH v2 1/1] connman: conditionally enable wifi and bluetooth Anders Darander
2011-08-17 7:22 ` [meta-oe][PATCH v2 0/1] connman: conditionally enable bluetooth and wifi Koen Kooi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox