Removed events not used in the code from the list. Added events that are used in the code.
Signed-off-by: Ed Bartosh <[email protected]> --- bitbake/lib/bb/ui/toasterui.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py index 377526e..53b9d92 100644 --- a/bitbake/lib/bb/ui/toasterui.py +++ b/bitbake/lib/bb/ui/toasterui.py @@ -99,13 +99,16 @@ _evt_list = [ "bb.build.TaskStarted", "bb.build.TaskSucceeded", "bb.command.CommandCompleted", - "bb.command.CommandExit", "bb.command.CommandFailed", "bb.cooker.CookerExit", "bb.event.BuildBase", + "bb.event.BuildCompleted", + "bb.event.BuildStarted", "bb.event.CacheLoadCompleted", "bb.event.CacheLoadProgress", "bb.event.CacheLoadStarted", + "bb.event.ConfigParsed", + "bb.event.DepTreeGenerated", "bb.event.LogExecTTY", "bb.event.MetadataEvent", "bb.event.MultipleProviders", @@ -113,9 +116,16 @@ _evt_list = [ "bb.event.ParseCompleted", "bb.event.ParseProgress", "bb.event.ParseStarted", - "bb.runqueue.runQueueExitWait", + "bb.event.RecipeParsed", + "bb.event.SanityCheck", + "bb.event.SanityCheckPassed", + "bb.event.TreeDataPreparationCompleted", + "bb.event.TreeDataPreparationStarted", + "bb.runqueue.runQueueTaskCompleted", "bb.runqueue.runQueueTaskFailed", + "bb.runqueue.runQueueTaskSkipped", "bb.runqueue.runQueueTaskStarted", + "bb.runqueue.sceneQueueTaskCompleted", "bb.runqueue.sceneQueueTaskFailed", "bb.runqueue.sceneQueueTaskStarted", "logging.LogRecord"] -- 2.1.4 -- _______________________________________________ toaster mailing list [email protected] https://lists.yoctoproject.org/listinfo/toaster
