[oe-commits] [bitbake] 01/03: bitbake: Add MultiConfigParsed event

git at git.openembedded.org git at git.openembedded.org
Thu Jul 6 15:49:06 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 160e47f5df90850e64dcb857c81a5039abc9235f
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Thu Jul 6 12:53:33 2017 +0100

    bitbake: Add MultiConfigParsed event
    
    There are some cases where the metadata needs to be aware a multiconfig build
    is happening and have access to the multiconfig data stores to merge data into
    the common build. This adds such an event allowing access to these datastores.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/bb/cookerdata.py | 2 ++
 lib/bb/event.py      | 6 ++++++
 lib/bb/ui/knotty.py  | 1 +
 3 files changed, 9 insertions(+)

diff --git a/lib/bb/cookerdata.py b/lib/bb/cookerdata.py
index 4d32aa0..644bb38 100644
--- a/lib/bb/cookerdata.py
+++ b/lib/bb/cookerdata.py
@@ -294,6 +294,8 @@ class CookerDataBuilder(object):
                 mcdata = self.parseConfigurationFiles(self.prefiles, self.postfiles, config)
                 bb.event.fire(bb.event.ConfigParsed(), mcdata)
                 self.mcdata[config] = mcdata
+            if multiconfig:
+                bb.event.fire(bb.event.MultiConfigParsed(self.mcdata), self.data)
 
         except (SyntaxError, bb.BBHandledException):
             raise bb.BBHandledException
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 6ccd4bd..1462382 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -358,6 +358,12 @@ class OperationProgress(Event):
 class ConfigParsed(Event):
     """Configuration Parsing Complete"""
 
+class MultiConfigParsed(Event):
+    """Multi-Config Parsing Complete"""
+    def __init__(self, mcdata):
+        self.mcdata = mcdata
+        Event.__init__(self)
+
 class RecipeEvent(Event):
     def __init__(self, fn):
         self.fn = fn
diff --git a/lib/bb/ui/knotty.py b/lib/bb/ui/knotty.py
index a19c3b3..936d5a4 100644
--- a/lib/bb/ui/knotty.py
+++ b/lib/bb/ui/knotty.py
@@ -664,6 +664,7 @@ def main(server, eventHandler, params, tf = TerminalFilter):
                                   bb.event.MetadataEvent,
                                   bb.event.StampUpdate,
                                   bb.event.ConfigParsed,
+                                  bb.event.MultiConfigParsed,
                                   bb.event.RecipeParsed,
                                   bb.event.RecipePreFinalise,
                                   bb.runqueue.runQueueEvent,

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list