summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 6ccd4bdc38..1462382f10 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -358,6 +358,12 @@ class OperationProgress(Event):
358class ConfigParsed(Event): 358class ConfigParsed(Event):
359 """Configuration Parsing Complete""" 359 """Configuration Parsing Complete"""
360 360
361class MultiConfigParsed(Event):
362 """Multi-Config Parsing Complete"""
363 def __init__(self, mcdata):
364 self.mcdata = mcdata
365 Event.__init__(self)
366
361class RecipeEvent(Event): 367class RecipeEvent(Event):
362 def __init__(self, fn): 368 def __init__(self, fn):
363 self.fn = fn 369 self.fn = fn