summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/event.py11
-rw-r--r--bitbake/lib/bb/parse/ast.py1
2 files changed, 12 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index e2ca33ea63..6d8493b175 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -361,6 +361,17 @@ class RecipeEvent(Event):
361class RecipePreFinalise(RecipeEvent): 361class RecipePreFinalise(RecipeEvent):
362 """ Recipe Parsing Complete but not yet finialised""" 362 """ Recipe Parsing Complete but not yet finialised"""
363 363
364class RecipeTaskPreProcess(RecipeEvent):
365 """
366 Recipe Tasks about to be finalised
367 The list of tasks should be final at this point and handlers
368 are only able to change interdependencies
369 """
370 def __init__(self, fn, tasklist):
371 self.fn = fn
372 self.tasklist = tasklist
373 Event.__init__(self)
374
364class RecipeParsed(RecipeEvent): 375class RecipeParsed(RecipeEvent):
365 """ Recipe Parsing Complete """ 376 """ Recipe Parsing Complete """
366 377
diff --git a/bitbake/lib/bb/parse/ast.py b/bitbake/lib/bb/parse/ast.py
index 853dda86b4..8b5b36619d 100644
--- a/bitbake/lib/bb/parse/ast.py
+++ b/bitbake/lib/bb/parse/ast.py
@@ -358,6 +358,7 @@ def finalize(fn, d, variant = None):
358 bb.data.update_data(d) 358 bb.data.update_data(d)
359 359
360 tasklist = d.getVar('__BBTASKS', False) or [] 360 tasklist = d.getVar('__BBTASKS', False) or []
361 bb.event.fire(bb.event.RecipeTaskPreProcess(fn, list(tasklist)), d)
361 bb.build.add_tasks(tasklist, d) 362 bb.build.add_tasks(tasklist, d)
362 363
363 bb.parse.siggen.finalise(fn, d, variant) 364 bb.parse.siggen.finalise(fn, d, variant)