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.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py
index 3a6104bcab..9aff489c1d 100644
--- a/bitbake/lib/bb/ui/toasterui.py
+++ b/bitbake/lib/bb/ui/toasterui.py
@@ -261,8 +261,12 @@ def main(server, eventHandler, params ):
261 buildinfohelper.store_missed_state_tasks(event) 261 buildinfohelper.store_missed_state_tasks(event)
262 elif event.type == "ImageFileSize": 262 elif event.type == "ImageFileSize":
263 buildinfohelper.update_target_image_file(event) 263 buildinfohelper.update_target_image_file(event)
264 elif event.type == "ArtifactFileSize":
265 buildinfohelper.update_artifact_image_file(event)
264 elif event.type == "LicenseManifestPath": 266 elif event.type == "LicenseManifestPath":
265 buildinfohelper.store_license_manifest_path(event) 267 buildinfohelper.store_license_manifest_path(event)
268 else:
269 logger.error("Unprocessed MetadataEvent %s " % str(event))
266 continue 270 continue
267 271
268 if isinstance(event, bb.cooker.CookerExit): 272 if isinstance(event, bb.cooker.CookerExit):