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.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index a3288b619b..7d47edb9e7 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -206,13 +206,17 @@ def getName(e):
206class ConfigParsed(Event): 206class ConfigParsed(Event):
207 """Configuration Parsing Complete""" 207 """Configuration Parsing Complete"""
208 208
209class RecipeParsed(Event): 209class RecipeEvent(Event):
210 """ Recipe Parsing Complete """
211
212 def __init__(self, fn): 210 def __init__(self, fn):
213 self.fn = fn 211 self.fn = fn
214 Event.__init__(self) 212 Event.__init__(self)
215 213
214class RecipePreFinalise(RecipeEvent):
215 """ Recipe Parsing Complete but not yet finialised"""
216
217class RecipeParsed(RecipeEvent):
218 """ Recipe Parsing Complete """
219
216class StampUpdate(Event): 220class StampUpdate(Event):
217 """Trigger for any adjustment of the stamp files to happen""" 221 """Trigger for any adjustment of the stamp files to happen"""
218 222