summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r--bitbake/lib/bb/ui/toasterui.py27
1 files changed, 12 insertions, 15 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py
index 377526e48c..4bb33f1008 100644
--- a/bitbake/lib/bb/ui/toasterui.py
+++ b/bitbake/lib/bb/ui/toasterui.py
@@ -102,10 +102,13 @@ _evt_list = [
102 "bb.command.CommandExit", 102 "bb.command.CommandExit",
103 "bb.command.CommandFailed", 103 "bb.command.CommandFailed",
104 "bb.cooker.CookerExit", 104 "bb.cooker.CookerExit",
105 "bb.event.BuildBase", 105 "bb.event.BuildCompleted",
106 "bb.event.BuildStarted",
106 "bb.event.CacheLoadCompleted", 107 "bb.event.CacheLoadCompleted",
107 "bb.event.CacheLoadProgress", 108 "bb.event.CacheLoadProgress",
108 "bb.event.CacheLoadStarted", 109 "bb.event.CacheLoadStarted",
110 "bb.event.ConfigParsed",
111 "bb.event.DepTreeGenerated",
109 "bb.event.LogExecTTY", 112 "bb.event.LogExecTTY",
110 "bb.event.MetadataEvent", 113 "bb.event.MetadataEvent",
111 "bb.event.MultipleProviders", 114 "bb.event.MultipleProviders",
@@ -113,9 +116,16 @@ _evt_list = [
113 "bb.event.ParseCompleted", 116 "bb.event.ParseCompleted",
114 "bb.event.ParseProgress", 117 "bb.event.ParseProgress",
115 "bb.event.ParseStarted", 118 "bb.event.ParseStarted",
116 "bb.runqueue.runQueueExitWait", 119 "bb.event.RecipeParsed",
120 "bb.event.SanityCheck",
121 "bb.event.SanityCheckPassed",
122 "bb.event.TreeDataPreparationCompleted",
123 "bb.event.TreeDataPreparationStarted",
124 "bb.runqueue.runQueueTaskCompleted",
117 "bb.runqueue.runQueueTaskFailed", 125 "bb.runqueue.runQueueTaskFailed",
126 "bb.runqueue.runQueueTaskSkipped",
118 "bb.runqueue.runQueueTaskStarted", 127 "bb.runqueue.runQueueTaskStarted",
128 "bb.runqueue.sceneQueueTaskCompleted",
119 "bb.runqueue.sceneQueueTaskFailed", 129 "bb.runqueue.sceneQueueTaskFailed",
120 "bb.runqueue.sceneQueueTaskStarted", 130 "bb.runqueue.sceneQueueTaskStarted",
121 "logging.LogRecord"] 131 "logging.LogRecord"]
@@ -395,19 +405,6 @@ def main(server, eventHandler, params):
395 main.shutdown = 1 405 main.shutdown = 1
396 continue 406 continue
397 407
398 # ignore
399 if isinstance(event, (bb.event.BuildBase,
400 bb.event.StampUpdate,
401 bb.event.RecipePreFinalise,
402 bb.runqueue.runQueueEvent,
403 bb.runqueue.runQueueExitWait,
404 bb.event.OperationProgress,
405 bb.command.CommandFailed,
406 bb.command.CommandExit,
407 bb.command.CommandCompleted,
408 bb.event.ReachableStamps)):
409 continue
410
411 if isinstance(event, bb.event.DepTreeGenerated): 408 if isinstance(event, bb.event.DepTreeGenerated):
412 buildinfohelper.store_dependency_information(event) 409 buildinfohelper.store_dependency_information(event)
413 continue 410 continue