* [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains
@ 2014-04-01 17:07 Otavio Salvador
2014-04-01 17:08 ` [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland Otavio Salvador
2014-04-01 17:53 ` [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains Richard Purdie
0 siblings, 2 replies; 7+ messages in thread
From: Otavio Salvador @ 2014-04-01 17:07 UTC (permalink / raw)
To: OpenEmbedded Core Mailing List; +Cc: Otavio Salvador
This is similar to the contains but matches any of values. This is
useful to match for example several DISTRO_FEATURES which ought to
include a PACKAGECONFIG option.
For example:
PACKAGECONFIG ??= "${@base_any_contains('DISTRO_FEATURES', 'x11 wayland', 'gtk+', '', d)}"
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
meta/classes/utils.bbclass | 3 +++
meta/lib/oe/utils.py | 13 +++++++++++++
2 files changed, 16 insertions(+)
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
index 0a533af..966eda1 100644
--- a/meta/classes/utils.bbclass
+++ b/meta/classes/utils.bbclass
@@ -26,6 +26,9 @@ def base_version_less_or_equal(variable, checkvalue, truevalue, falsevalue, d):
def base_contains(variable, checkvalues, truevalue, falsevalue, d):
return oe.utils.contains(variable, checkvalues, truevalue, falsevalue, d)
+def base_any_contains(variable, checkvalues, truevalue, falsevalue, d):
+ return oe.utils.any_contains(variable, checkvalues, truevalue, falsevalue, d)
+
def base_both_contain(variable1, variable2, checkvalue, d):
return oe.utils.both_contain(variable1, variable2, checkvalue, d)
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index defa536..029d713 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -54,6 +54,19 @@ def contains(variable, checkvalues, truevalue, falsevalue, d):
return truevalue
return falsevalue
+def any_contains(variable, checkvalues, truevalue, falsevalue, d):
+ val = d.getVar(variable, True)
+ if not val:
+ return falsevalue
+ val = set(val.split())
+ if isinstance(checkvalues, basestring):
+ checkvalues = set(checkvalues.split())
+ else:
+ checkvalues = set(checkvalues)
+ if checkvalues in val:
+ return truevalue
+ return falsevalue
+
def both_contain(variable1, variable2, checkvalue, d):
if d.getVar(variable1,1).find(checkvalue) != -1 and d.getVar(variable2,1).find(checkvalue) != -1:
return checkvalue
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland
2014-04-01 17:07 [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains Otavio Salvador
@ 2014-04-01 17:08 ` Otavio Salvador
2014-04-01 18:50 ` Denys Dmytriyenko
2014-04-01 17:53 ` [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains Richard Purdie
1 sibling, 1 reply; 7+ messages in thread
From: Otavio Salvador @ 2014-04-01 17:08 UTC (permalink / raw)
To: OpenEmbedded Core Mailing List; +Cc: Otavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
This patch depends on the alsa-tools one I sent some minutes ago
meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
index 4f64a38..fdbe82a 100644
--- a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
+++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae1
SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \
file://mips_has_no_io_h.patch \
file://autotools.patch \
- ${@base_contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}"
+ ${@base_any_contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}"
SRC_URI[md5sum] = "1ea381d00a6069a98613aa7effa4cb51"
SRC_URI[sha256sum] = "6562611b5a6560712f109e09740a9d4fa47296b07ed9590cb44139c5f154ada2"
@@ -20,7 +20,7 @@ inherit autotools-brokensep
EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'"
-PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
+PACKAGECONFIG ??= "${@base_any_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
PACKAGECONFIG[gtk+] = ",,gtk+ gtk+3,"
# configure.ac/.in doesn't exist so force copy
--
1.9.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains
2014-04-01 17:07 [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains Otavio Salvador
2014-04-01 17:08 ` [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland Otavio Salvador
@ 2014-04-01 17:53 ` Richard Purdie
2014-04-01 18:38 ` Otavio Salvador
1 sibling, 1 reply; 7+ messages in thread
From: Richard Purdie @ 2014-04-01 17:53 UTC (permalink / raw)
To: Otavio Salvador; +Cc: OpenEmbedded Core Mailing List
On Tue, 2014-04-01 at 14:07 -0300, Otavio Salvador wrote:
> This is similar to the contains but matches any of values. This is
> useful to match for example several DISTRO_FEATURES which ought to
> include a PACKAGECONFIG option.
>
> For example:
>
> PACKAGECONFIG ??= "${@base_any_contains('DISTRO_FEATURES', 'x11 wayland', 'gtk+', '', d)}"
>
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> ---
> meta/classes/utils.bbclass | 3 +++
> meta/lib/oe/utils.py | 13 +++++++++++++
> 2 files changed, 16 insertions(+)
>
> diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
> index 0a533af..966eda1 100644
> --- a/meta/classes/utils.bbclass
> +++ b/meta/classes/utils.bbclass
> @@ -26,6 +26,9 @@ def base_version_less_or_equal(variable, checkvalue, truevalue, falsevalue, d):
> def base_contains(variable, checkvalues, truevalue, falsevalue, d):
> return oe.utils.contains(variable, checkvalues, truevalue, falsevalue, d)
>
> +def base_any_contains(variable, checkvalues, truevalue, falsevalue, d):
> + return oe.utils.any_contains(variable, checkvalues, truevalue, falsevalue, d)
> +
> def base_both_contain(variable1, variable2, checkvalue, d):
> return oe.utils.both_contain(variable1, variable2, checkvalue, d)
>
> diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
> index defa536..029d713 100644
> --- a/meta/lib/oe/utils.py
> +++ b/meta/lib/oe/utils.py
> @@ -54,6 +54,19 @@ def contains(variable, checkvalues, truevalue, falsevalue, d):
> return truevalue
> return falsevalue
>
> +def any_contains(variable, checkvalues, truevalue, falsevalue, d):
> + val = d.getVar(variable, True)
> + if not val:
> + return falsevalue
> + val = set(val.split())
> + if isinstance(checkvalues, basestring):
> + checkvalues = set(checkvalues.split())
> + else:
> + checkvalues = set(checkvalues)
> + if checkvalues in val:
> + return truevalue
> + return falsevalue
> +
> def both_contain(variable1, variable2, checkvalue, d):
> if d.getVar(variable1,1).find(checkvalue) != -1 and d.getVar(variable2,1).find(checkvalue) != -1:
> return checkvalue
A more logical name is perhaps containsany().
I'd also add that bitbake has special support for contains() and
optimises sstate hashes for its use. We don't have such optimisation for
containsany(). I think this is perhaps 1.7 material at this point.
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains
2014-04-01 17:53 ` [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains Richard Purdie
@ 2014-04-01 18:38 ` Otavio Salvador
2014-04-01 19:07 ` Richard Purdie
0 siblings, 1 reply; 7+ messages in thread
From: Otavio Salvador @ 2014-04-01 18:38 UTC (permalink / raw)
To: Richard Purdie; +Cc: OpenEmbedded Core Mailing List
On Tue, Apr 1, 2014 at 2:53 PM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> On Tue, 2014-04-01 at 14:07 -0300, Otavio Salvador wrote:
>> This is similar to the contains but matches any of values. This is
>> useful to match for example several DISTRO_FEATURES which ought to
>> include a PACKAGECONFIG option.
>>
>> For example:
>>
>> PACKAGECONFIG ??= "${@base_any_contains('DISTRO_FEATURES', 'x11 wayland', 'gtk+', '', d)}"
>>
>> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
>> ---
>> meta/classes/utils.bbclass | 3 +++
>> meta/lib/oe/utils.py | 13 +++++++++++++
>> 2 files changed, 16 insertions(+)
>>
>> diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
>> index 0a533af..966eda1 100644
>> --- a/meta/classes/utils.bbclass
>> +++ b/meta/classes/utils.bbclass
>> @@ -26,6 +26,9 @@ def base_version_less_or_equal(variable, checkvalue, truevalue, falsevalue, d):
>> def base_contains(variable, checkvalues, truevalue, falsevalue, d):
>> return oe.utils.contains(variable, checkvalues, truevalue, falsevalue, d)
>>
>> +def base_any_contains(variable, checkvalues, truevalue, falsevalue, d):
>> + return oe.utils.any_contains(variable, checkvalues, truevalue, falsevalue, d)
>> +
>> def base_both_contain(variable1, variable2, checkvalue, d):
>> return oe.utils.both_contain(variable1, variable2, checkvalue, d)
>>
>> diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
>> index defa536..029d713 100644
>> --- a/meta/lib/oe/utils.py
>> +++ b/meta/lib/oe/utils.py
>> @@ -54,6 +54,19 @@ def contains(variable, checkvalues, truevalue, falsevalue, d):
>> return truevalue
>> return falsevalue
>>
>> +def any_contains(variable, checkvalues, truevalue, falsevalue, d):
>> + val = d.getVar(variable, True)
>> + if not val:
>> + return falsevalue
>> + val = set(val.split())
>> + if isinstance(checkvalues, basestring):
>> + checkvalues = set(checkvalues.split())
>> + else:
>> + checkvalues = set(checkvalues)
>> + if checkvalues in val:
>> + return truevalue
>> + return falsevalue
>> +
>> def both_contain(variable1, variable2, checkvalue, d):
>> if d.getVar(variable1,1).find(checkvalue) != -1 and d.getVar(variable2,1).find(checkvalue) != -1:
>> return checkvalue
>
> A more logical name is perhaps containsany().
>
> I'd also add that bitbake has special support for contains() and
> optimises sstate hashes for its use. We don't have such optimisation for
> containsany(). I think this is perhaps 1.7 material at this point.
I'd use contains_any. Any problem with this?
I didn't find the place bitbake handles it. Can you point the
reference for me to look at it and complete this?
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland
2014-04-01 17:08 ` [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland Otavio Salvador
@ 2014-04-01 18:50 ` Denys Dmytriyenko
2014-04-01 18:58 ` Otavio Salvador
0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2014-04-01 18:50 UTC (permalink / raw)
To: Otavio Salvador; +Cc: OpenEmbedded Core Mailing List
On Tue, Apr 01, 2014 at 02:08:00PM -0300, Otavio Salvador wrote:
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> ---
> This patch depends on the alsa-tools one I sent some minutes ago
>
> meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
> index 4f64a38..fdbe82a 100644
> --- a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
> +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
> @@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae1
> SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \
> file://mips_has_no_io_h.patch \
> file://autotools.patch \
> - ${@base_contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}"
> + ${@base_any_contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}"
What's the reason to use any_contains here?
> SRC_URI[md5sum] = "1ea381d00a6069a98613aa7effa4cb51"
> SRC_URI[sha256sum] = "6562611b5a6560712f109e09740a9d4fa47296b07ed9590cb44139c5f154ada2"
> @@ -20,7 +20,7 @@ inherit autotools-brokensep
>
> EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'"
>
> -PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
> +PACKAGECONFIG ??= "${@base_any_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
Same here - what's the reason for the change?
> PACKAGECONFIG[gtk+] = ",,gtk+ gtk+3,"
>
> # configure.ac/.in doesn't exist so force copy
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland
2014-04-01 18:50 ` Denys Dmytriyenko
@ 2014-04-01 18:58 ` Otavio Salvador
0 siblings, 0 replies; 7+ messages in thread
From: Otavio Salvador @ 2014-04-01 18:58 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: OpenEmbedded Core Mailing List
On Tue, Apr 1, 2014 at 3:50 PM, Denys Dmytriyenko <denis@denix.org> wrote:
> On Tue, Apr 01, 2014 at 02:08:00PM -0300, Otavio Salvador wrote:
>> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
>> ---
>> This patch depends on the alsa-tools one I sent some minutes ago
>>
>> meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
>> index 4f64a38..fdbe82a 100644
>> --- a/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
>> +++ b/meta/recipes-multimedia/alsa/alsa-tools_1.0.27.bb
>> @@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae1
>> SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \
>> file://mips_has_no_io_h.patch \
>> file://autotools.patch \
>> - ${@base_contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}"
>> + ${@base_any_contains('DISTRO_FEATURES', 'x11', '', 'file://makefile_no_gtk.patch', d)}"
>
> What's the reason to use any_contains here?
Forgot to add the wayland to the list. Good catch.
>> SRC_URI[md5sum] = "1ea381d00a6069a98613aa7effa4cb51"
>> SRC_URI[sha256sum] = "6562611b5a6560712f109e09740a9d4fa47296b07ed9590cb44139c5f154ada2"
>> @@ -20,7 +20,7 @@ inherit autotools-brokensep
>>
>> EXTRA_OEMAKE += "GITCOMPILE_ARGS='--host=${HOST_SYS} --build=${BUILD_SYS} --target=${TARGET_SYS} --with-libtool-sysroot=${STAGING_DIR_HOST} --prefix=${prefix}'"
>>
>> -PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
>> +PACKAGECONFIG ??= "${@base_any_contains('DISTRO_FEATURES', 'x11', 'gtk+', '', d)}"
>
> Same here - what's the reason for the change?
Same here.
>> PACKAGECONFIG[gtk+] = ",,gtk+ gtk+3,"
>>
>> # configure.ac/.in doesn't exist so force copy
I am looking at the other changes Richard has commented and will send a v2.
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains
2014-04-01 18:38 ` Otavio Salvador
@ 2014-04-01 19:07 ` Richard Purdie
0 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2014-04-01 19:07 UTC (permalink / raw)
To: Otavio Salvador; +Cc: OpenEmbedded Core Mailing List
On Tue, 2014-04-01 at 15:38 -0300, Otavio Salvador wrote:
> On Tue, Apr 1, 2014 at 2:53 PM, Richard Purdie
> <richard.purdie@linuxfoundation.org> wrote:
> > On Tue, 2014-04-01 at 14:07 -0300, Otavio Salvador wrote:
> >> This is similar to the contains but matches any of values. This is
> >> useful to match for example several DISTRO_FEATURES which ought to
> >> include a PACKAGECONFIG option.
> >>
> >> For example:
> >>
> >> PACKAGECONFIG ??= "${@base_any_contains('DISTRO_FEATURES', 'x11 wayland', 'gtk+', '', d)}"
> >>
> >> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
> >> ---
> >> meta/classes/utils.bbclass | 3 +++
> >> meta/lib/oe/utils.py | 13 +++++++++++++
> >> 2 files changed, 16 insertions(+)
> >>
> >> diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
> >> index 0a533af..966eda1 100644
> >> --- a/meta/classes/utils.bbclass
> >> +++ b/meta/classes/utils.bbclass
> >> @@ -26,6 +26,9 @@ def base_version_less_or_equal(variable, checkvalue, truevalue, falsevalue, d):
> >> def base_contains(variable, checkvalues, truevalue, falsevalue, d):
> >> return oe.utils.contains(variable, checkvalues, truevalue, falsevalue, d)
> >>
> >> +def base_any_contains(variable, checkvalues, truevalue, falsevalue, d):
> >> + return oe.utils.any_contains(variable, checkvalues, truevalue, falsevalue, d)
> >> +
> >> def base_both_contain(variable1, variable2, checkvalue, d):
> >> return oe.utils.both_contain(variable1, variable2, checkvalue, d)
> >>
> >> diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
> >> index defa536..029d713 100644
> >> --- a/meta/lib/oe/utils.py
> >> +++ b/meta/lib/oe/utils.py
> >> @@ -54,6 +54,19 @@ def contains(variable, checkvalues, truevalue, falsevalue, d):
> >> return truevalue
> >> return falsevalue
> >>
> >> +def any_contains(variable, checkvalues, truevalue, falsevalue, d):
> >> + val = d.getVar(variable, True)
> >> + if not val:
> >> + return falsevalue
> >> + val = set(val.split())
> >> + if isinstance(checkvalues, basestring):
> >> + checkvalues = set(checkvalues.split())
> >> + else:
> >> + checkvalues = set(checkvalues)
> >> + if checkvalues in val:
> >> + return truevalue
> >> + return falsevalue
> >> +
> >> def both_contain(variable1, variable2, checkvalue, d):
> >> if d.getVar(variable1,1).find(checkvalue) != -1 and d.getVar(variable2,1).find(checkvalue) != -1:
> >> return checkvalue
> >
> > A more logical name is perhaps containsany().
> >
> > I'd also add that bitbake has special support for contains() and
> > optimises sstate hashes for its use. We don't have such optimisation for
> > containsany(). I think this is perhaps 1.7 material at this point.
>
> I'd use contains_any. Any problem with this?
>
> I didn't find the place bitbake handles it. Can you point the
> reference for me to look at it and complete this?
It starts at lib/bb/codeparser.py:
containsfuncs = ("bb.utils.contains", "base_contains", "oe.utils.contains")
and then that data gets passed around in various caches and so one and
is eventually used in the checksum dependencies.
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2014-04-01 19:07 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-01 17:07 [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains Otavio Salvador
2014-04-01 17:08 ` [PATCH 2/2] alsa-tools: Enable GTK support for X11 and Wayland Otavio Salvador
2014-04-01 18:50 ` Denys Dmytriyenko
2014-04-01 18:58 ` Otavio Salvador
2014-04-01 17:53 ` [PATCH 1/2] oe.utils, utils.bbclass: Add any_contains and base_any_contains Richard Purdie
2014-04-01 18:38 ` Otavio Salvador
2014-04-01 19:07 ` Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.