* [PATCH V2 0/1] connman: optionally build ofono plugin
@ 2012-04-10 3:16 Lianhao Lu
2012-04-10 3:16 ` [PATCH V2 1/1] " Lianhao Lu
0 siblings, 1 reply; 8+ messages in thread
From: Lianhao Lu @ 2012-04-10 3:16 UTC (permalink / raw)
To: openembedded-core
Only build connman ofono plugin when 3g distro feature is enabled.
The following changes since commit 1a82989345fb98becb487d270fd93a5e6dffeb47:
Saul Wold (1):
runqemu-internal: Add console=tty for qemuppc and NFS
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib llu/multilib
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=llu/multilib
Lianhao Lu (1):
connman: optionally build ofono plugin.
meta/recipes-connectivity/connman/connman.inc | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH V2 1/1] connman: optionally build ofono plugin.
2012-04-10 3:16 [PATCH V2 0/1] connman: optionally build ofono plugin Lianhao Lu
@ 2012-04-10 3:16 ` Lianhao Lu
2012-04-10 6:48 ` Koen Kooi
0 siblings, 1 reply; 8+ messages in thread
From: Lianhao Lu @ 2012-04-10 3:16 UTC (permalink / raw)
To: openembedded-core
Only build ofono plugin when 3g feature is enabled. Also add dependency
to ofono when ofono plugin is being built.
This is part of the buf fixing [YOCTO #2216].
Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
---
meta/recipes-connectivity/connman/connman.inc | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc
index 1a6dd1b..c3827f1 100644
--- a/meta/recipes-connectivity/connman/connman.inc
+++ b/meta/recipes-connectivity/connman/connman.inc
@@ -17,6 +17,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
DEPENDS = "dbus glib-2.0 ppp iptables gnutls \
${@base_contains('DISTRO_FEATURES', 'bluetooth','bluez4', '', d)} \
${@base_contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \
+ ${@base_contains('DISTRO_FEATURES', '3g','ofono', '', d)} \
"
EXTRA_OECONF += "\
@@ -30,7 +31,7 @@ EXTRA_OECONF += "\
${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi', '--disable-wifi', d)} \
${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \
--enable-dnsproxy \
- --enable-ofono \
+ ${@base_contains('DISTRO_FEATURES', '3g','--enable-ofono', '--disable-ofono', d)} \
--enable-tools \
--enable-test \
--disable-polkit \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH V2 1/1] connman: optionally build ofono plugin.
2012-04-10 3:16 ` [PATCH V2 1/1] " Lianhao Lu
@ 2012-04-10 6:48 ` Koen Kooi
2012-04-10 11:18 ` Otavio Salvador
0 siblings, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2012-04-10 6:48 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
This changes the default behaviour, so it should not go in for 1.2
Op 10 apr. 2012, om 05:16 heeft Lianhao Lu het volgende geschreven:
> Only build ofono plugin when 3g feature is enabled. Also add dependency
> to ofono when ofono plugin is being built.
>
> This is part of the buf fixing [YOCTO #2216].
>
> Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
> ---
> meta/recipes-connectivity/connman/connman.inc | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc
> index 1a6dd1b..c3827f1 100644
> --- a/meta/recipes-connectivity/connman/connman.inc
> +++ b/meta/recipes-connectivity/connman/connman.inc
> @@ -17,6 +17,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \
> DEPENDS = "dbus glib-2.0 ppp iptables gnutls \
> ${@base_contains('DISTRO_FEATURES', 'bluetooth','bluez4', '', d)} \
> ${@base_contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \
> + ${@base_contains('DISTRO_FEATURES', '3g','ofono', '', d)} \
> "
>
> EXTRA_OECONF += "\
> @@ -30,7 +31,7 @@ EXTRA_OECONF += "\
> ${@base_contains('DISTRO_FEATURES', 'wifi','--enable-wifi', '--disable-wifi', d)} \
> ${@base_contains('DISTRO_FEATURES', 'bluetooth','--enable-bluetooth', '--disable-bluetooth', d)} \
> --enable-dnsproxy \
> - --enable-ofono \
> + ${@base_contains('DISTRO_FEATURES', '3g','--enable-ofono', '--disable-ofono', d)} \
> --enable-tools \
> --enable-test \
> --disable-polkit \
> --
> 1.7.0.4
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH V2 1/1] connman: optionally build ofono plugin.
2012-04-10 6:48 ` Koen Kooi
@ 2012-04-10 11:18 ` Otavio Salvador
2012-04-10 11:24 ` Koen Kooi
0 siblings, 1 reply; 8+ messages in thread
From: Otavio Salvador @ 2012-04-10 11:18 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
Hello Koen,
On Tue, Apr 10, 2012 at 03:48, Koen Kooi <koen@dominion.thruhere.net> wrote:
> This changes the default behaviour, so it should not go in for 1.2
I don't see why this shouldn't be included. It does improve build time
and works for both OE-Core and Yocto setups.
Can you clarify what is your concerns?
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH V2 1/1] connman: optionally build ofono plugin.
2012-04-10 11:18 ` Otavio Salvador
@ 2012-04-10 11:24 ` Koen Kooi
2012-04-10 11:27 ` Otavio Salvador
0 siblings, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2012-04-10 11:24 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
Op 10 apr. 2012, om 13:18 heeft Otavio Salvador het volgende geschreven:
> Hello Koen,
>
> On Tue, Apr 10, 2012 at 03:48, Koen Kooi <koen@dominion.thruhere.net> wrote:
>> This changes the default behaviour, so it should not go in for 1.2
>
> I don't see why this shouldn't be included. It does improve build time
> and works for both OE-Core and Yocto setups.
>
> Can you clarify what is your concerns?
It changes the default behaviour. There shouldn't be any behaviour changes so late in the release cycle.
And apart from that, it should use PACKAGECONFIG :)
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH V2 1/1] connman: optionally build ofono plugin.
2012-04-10 11:24 ` Koen Kooi
@ 2012-04-10 11:27 ` Otavio Salvador
2012-04-10 12:08 ` Richard Purdie
0 siblings, 1 reply; 8+ messages in thread
From: Otavio Salvador @ 2012-04-10 11:27 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, Apr 10, 2012 at 08:24, Koen Kooi <koen@dominion.thruhere.net> wrote:
>> Can you clarify what is your concerns?
>
> It changes the default behaviour. There shouldn't be any behaviour changes so late in the release cycle.
> And apart from that, it should use PACKAGECONFIG :)
I agree about PACKAGECONFIG but this behaviour change seems acceptable
for me since most users won't be using 3g and will be not affected by
this.
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH V2 1/1] connman: optionally build ofono plugin.
2012-04-10 11:27 ` Otavio Salvador
@ 2012-04-10 12:08 ` Richard Purdie
2012-04-10 12:43 ` Koen Kooi
0 siblings, 1 reply; 8+ messages in thread
From: Richard Purdie @ 2012-04-10 12:08 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, 2012-04-10 at 08:27 -0300, Otavio Salvador wrote:
> On Tue, Apr 10, 2012 at 08:24, Koen Kooi <koen@dominion.thruhere.net> wrote:
> >> Can you clarify what is your concerns?
> >
> > It changes the default behaviour. There shouldn't be any behaviour changes so late in the release cycle.
> > And apart from that, it should use PACKAGECONFIG :)
>
> I agree about PACKAGECONFIG but this behaviour change seems acceptable
> for me since most users won't be using 3g and will be not affected by
> this.
So how about we just add ophono to DEPENDS for 1.2 (since its implied
and enabled as things stand) and then in 1.3 we use PACKAGECONFIG?
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH V2 1/1] connman: optionally build ofono plugin.
2012-04-10 12:08 ` Richard Purdie
@ 2012-04-10 12:43 ` Koen Kooi
0 siblings, 0 replies; 8+ messages in thread
From: Koen Kooi @ 2012-04-10 12:43 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
Op 10 apr. 2012, om 14:08 heeft Richard Purdie het volgende geschreven:
> On Tue, 2012-04-10 at 08:27 -0300, Otavio Salvador wrote:
>> On Tue, Apr 10, 2012 at 08:24, Koen Kooi <koen@dominion.thruhere.net> wrote:
>>>> Can you clarify what is your concerns?
>>>
>>> It changes the default behaviour. There shouldn't be any behaviour changes so late in the release cycle.
>>> And apart from that, it should use PACKAGECONFIG :)
>>
>> I agree about PACKAGECONFIG but this behaviour change seems acceptable
>> for me since most users won't be using 3g and will be not affected by
>> this.
>
> So how about we just add ophono to DEPENDS for 1.2 (since its implied
> and enabled as things stand) and then in 1.3 we use PACKAGECONFIG?
That works for me.
regards,
koen
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-04-10 12:53 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-10 3:16 [PATCH V2 0/1] connman: optionally build ofono plugin Lianhao Lu
2012-04-10 3:16 ` [PATCH V2 1/1] " Lianhao Lu
2012-04-10 6:48 ` Koen Kooi
2012-04-10 11:18 ` Otavio Salvador
2012-04-10 11:24 ` Koen Kooi
2012-04-10 11:27 ` Otavio Salvador
2012-04-10 12:08 ` Richard Purdie
2012-04-10 12:43 ` Koen Kooi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox