* [PATCH] utils.bbclass: add helper function to add all multilib variants of a specific package
@ 2012-07-05 19:23 Matthew McClintock
2012-07-09 16:57 ` Saul Wold
0 siblings, 1 reply; 2+ messages in thread
From: Matthew McClintock @ 2012-07-05 19:23 UTC (permalink / raw)
To: openembedded-core
From: Richard Purdie <richard.purdie@linuxfoundation.org>
This is useful for the scenario where we want to add 'gcc' to
the root file system for all multilib variants
Signed-off-by: Matthew McClintock <msm@freescale.com>
---
RP was the author of this patch via pastebin only... I thought
I would properly attribute it to him
meta/classes/utils.bbclass | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
index fde8f44..cc3acfa 100644
--- a/meta/classes/utils.bbclass
+++ b/meta/classes/utils.bbclass
@@ -351,6 +351,15 @@ def extend_variants(d, var, extend, delim=':'):
variants.append(eext[1])
return " ".join(variants)
+def multilib_pkg_extend(d, pkg):
+ variants = (d.getVar("MULTILIB_VARIANTS", True) or "").split()
+ if not variants:
+ return pkg
+ pkgs = pkg
+ for v in variants:
+ pkgs = pkgs + " " + v + "-" + pkg
+ return pkgs
+
def all_multilib_tune_values(d, var, unique = True, need_split = True, delim = ' '):
"""Return a string of all ${var} in all multilib tune configuration"""
values = []
--
1.7.10
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] utils.bbclass: add helper function to add all multilib variants of a specific package
2012-07-05 19:23 [PATCH] utils.bbclass: add helper function to add all multilib variants of a specific package Matthew McClintock
@ 2012-07-09 16:57 ` Saul Wold
0 siblings, 0 replies; 2+ messages in thread
From: Saul Wold @ 2012-07-09 16:57 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Matthew McClintock
On 07/05/2012 12:23 PM, Matthew McClintock wrote:
> From: Richard Purdie <richard.purdie@linuxfoundation.org>
>
> This is useful for the scenario where we want to add 'gcc' to
> the root file system for all multilib variants
>
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
> RP was the author of this patch via pastebin only... I thought
> I would properly attribute it to him
>
> meta/classes/utils.bbclass | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
> index fde8f44..cc3acfa 100644
> --- a/meta/classes/utils.bbclass
> +++ b/meta/classes/utils.bbclass
> @@ -351,6 +351,15 @@ def extend_variants(d, var, extend, delim=':'):
> variants.append(eext[1])
> return " ".join(variants)
>
> +def multilib_pkg_extend(d, pkg):
> + variants = (d.getVar("MULTILIB_VARIANTS", True) or "").split()
> + if not variants:
> + return pkg
> + pkgs = pkg
> + for v in variants:
> + pkgs = pkgs + " " + v + "-" + pkg
> + return pkgs
> +
> def all_multilib_tune_values(d, var, unique = True, need_split = True, delim = ' '):
> """Return a string of all ${var} in all multilib tune configuration"""
> values = []
>
Merged this along with the MakeMaker patch
Thanks
Sau!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-07-09 17:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-05 19:23 [PATCH] utils.bbclass: add helper function to add all multilib variants of a specific package Matthew McClintock
2012-07-09 16:57 ` Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox