All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES
@ 2013-07-29 22:26 Otavio Salvador
  2013-07-29 22:35   ` Otavio Salvador
  2013-07-30 10:59 ` Paul Eggleton
  0 siblings, 2 replies; 18+ messages in thread
From: Otavio Salvador @ 2013-07-29 22:26 UTC (permalink / raw)
  To: OpenEmbedded Core Mailing List; +Cc: Otavio Salvador

This allow the addition and removal of distro features easily. To add
a feature, use:

 EXTRA_DISTRO_FEATURES += "wayland"

and to remove, use '~' prefix, as:

 EXTRA_DISTRO_FEATURES += "~x11"

This code has been mostly copied from Mentor Graphics public layer but
changed the variable name for a more descriptive name. The original
code can be seen at user_feature.bbclass at:

 http://git.yoctoproject.org/cgit/cgit.cgi/meta-mentor

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
 meta/classes/base.bbclass |  4 ++++
 meta/lib/oe/utils.py      | 20 ++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 9c92e0b..83f6458 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -298,6 +298,9 @@ def buildcfg_neededvars(d):
     if pesteruser:
         bb.fatal('The following variable(s) were not set: %s\nPlease set them directly, or choose a MACHINE or DISTRO that sets them.' % ', '.join(pesteruser))
 
+EXTRA_DISTRO_FEATURES ?= ""
+EXTRA_DISTRO_FEATURES[type] = "list"
+
 addhandler base_eventhandler
 base_eventhandler[eventmask] = "bb.event.ConfigParsed bb.event.BuildStarted"
 python base_eventhandler() {
@@ -307,6 +310,7 @@ python base_eventhandler() {
         preferred_ml_updates(e.data)
         oe.utils.features_backfill("DISTRO_FEATURES", e.data)
         oe.utils.features_backfill("MACHINE_FEATURES", e.data)
+        oe.utils.extra_distro_features(e.data)
 
     if isinstance(e, bb.event.BuildStarted):
         localdata = bb.data.createCopy(e.data)
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index 82987e8..9e82801 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -117,6 +117,26 @@ def features_backfill(var,d):
     if addfeatures:
         d.appendVar(var, " " + " ".join(addfeatures))
 
+def extra_distro_features(d):
+    import oe.data
+
+    extra_features = oe.data.typed_value('EXTRA_DISTRO_FEATURES', d)
+    if not extra_features:
+        return
+
+    d.finalize()
+
+    distro_features = d.getVar('DISTRO_FEATURES', True).split()
+    for feature in extra_features:
+        if feature.startswith('~'):
+            feature = feature[1:]
+            if feature in distro_features:
+                distro_features.remove(feature)
+        else:
+            if feature not in distro_features:
+                distro_features.append(feature)
+
+    d.setVar('DISTRO_FEATURES', ' '.join(distro_features))
 
 def packages_filter_out_system(d):
     """
-- 
1.8.3.2



^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2013-07-30 21:01 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-29 22:26 [PATCH] base.bbclass: Add support to EXTRA_DISTRO_FEATURES Otavio Salvador
2013-07-29 22:35 ` Otavio Salvador
2013-07-29 22:35   ` Otavio Salvador
2013-07-29 22:57   ` Rogerio Nunes
2013-07-29 22:57     ` [OE-core] " Rogerio Nunes
2013-07-30  5:27     ` Abhijit Potnis
2013-07-30 10:59 ` Paul Eggleton
2013-07-30 12:00   ` Otavio Salvador
2013-07-30 12:14     ` Phil Blundell
2013-07-30 12:24       ` Otavio Salvador
2013-07-30 14:46         ` Mark Hatle
2013-07-30 15:09           ` Paul Eggleton
2013-07-30 15:37             ` Mark Hatle
2013-07-30 15:19           ` Phil Blundell
2013-07-30 15:43             ` Mark Hatle
2013-07-30 16:05               ` Phil Blundell
2013-07-30 21:00                 ` Otavio Salvador
2013-07-30 21:01                 ` Otavio Salvador

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.