diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-02 14:34:01 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-03-03 15:38:13 +0000 |
commit | d22b6e03a5504145abed7c2ca44cf12854df85da (patch) | |
tree | b68018acb2ad8648cf3a22a1acc7c4449d8e7eba /meta/classes | |
parent | 7519b0fc32abcab692359dd9d822af52ce41c43a (diff) | |
download | poky-d22b6e03a5504145abed7c2ca44cf12854df85da.tar.gz |
mcextend: Add helper class useful for multiconfig
This class allows users to easily create multiconfig BBCLASSEXTEND recipes
and is generally useful. It will be used by new tests so add as a general
feature.
(From OE-Core rev: 9ad19eb12c24d1ddc967215af0ebafd2cd2cb665)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/mcextend.bbclass | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/classes/mcextend.bbclass b/meta/classes/mcextend.bbclass new file mode 100644 index 0000000000..0f8f962298 --- /dev/null +++ b/meta/classes/mcextend.bbclass | |||
@@ -0,0 +1,16 @@ | |||
1 | python mcextend_virtclass_handler () { | ||
2 | cls = e.data.getVar("BBEXTENDCURR") | ||
3 | variant = e.data.getVar("BBEXTENDVARIANT") | ||
4 | if cls != "mcextend" or not variant: | ||
5 | return | ||
6 | |||
7 | override = ":virtclass-mcextend-" + variant | ||
8 | |||
9 | e.data.setVar("PN", e.data.getVar("PN", False) + "-" + variant) | ||
10 | e.data.setVar("MCNAME", variant) | ||
11 | e.data.setVar("OVERRIDES", e.data.getVar("OVERRIDES", False) + override) | ||
12 | } | ||
13 | |||
14 | addhandler mcextend_virtclass_handler | ||
15 | mcextend_virtclass_handler[eventmask] = "bb.event.RecipePreFinalise" | ||
16 | |||