summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/toasterui.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/toasterui.py')
-rw-r--r--bitbake/lib/bb/ui/toasterui.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py
index d8bccdb81c..f399a7d316 100644
--- a/bitbake/lib/bb/ui/toasterui.py
+++ b/bitbake/lib/bb/ui/toasterui.py
@@ -364,7 +364,8 @@ def main(server, eventHandler, params):
364 errorcode = 1 364 errorcode = 1
365 logger.error("Command execution failed: %s", event.error) 365 logger.error("Command execution failed: %s", event.error)
366 elif isinstance(event, bb.event.BuildCompleted): 366 elif isinstance(event, bb.event.BuildCompleted):
367 buildinfohelper.scan_build_artifacts() 367 buildinfohelper.scan_image_artifacts()
368 buildinfohelper.clone_required_sdk_artifacts()
368 369
369 # turn off logging to the current build log 370 # turn off logging to the current build log
370 _close_build_log(build_log) 371 _close_build_log(build_log)
@@ -412,8 +413,8 @@ def main(server, eventHandler, params):
412 buildinfohelper.store_target_package_data(event) 413 buildinfohelper.store_target_package_data(event)
413 elif event.type == "MissedSstate": 414 elif event.type == "MissedSstate":
414 buildinfohelper.store_missed_state_tasks(event) 415 buildinfohelper.store_missed_state_tasks(event)
415 elif event.type == "ArtifactFileSize": 416 elif event.type == "SDKArtifactInfo":
416 buildinfohelper.update_artifact_image_file(event) 417 buildinfohelper.scan_sdk_artifacts(event)
417 elif event.type == "SetBRBE": 418 elif event.type == "SetBRBE":
418 buildinfohelper.brbe = buildinfohelper._get_data_from_event(event) 419 buildinfohelper.brbe = buildinfohelper._get_data_from_event(event)
419 elif event.type == "OSErrorException": 420 elif event.type == "OSErrorException":