diff options
Diffstat (limited to 'bitbake/lib/bb/ui/toasterui.py')
| -rw-r--r-- | bitbake/lib/bb/ui/toasterui.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py index 04e0f99342..b2c084cb8e 100644 --- a/bitbake/lib/bb/ui/toasterui.py +++ b/bitbake/lib/bb/ui/toasterui.py | |||
| @@ -235,14 +235,16 @@ def main(server, eventHandler, params ): | |||
| 235 | if isinstance(event, bb.event.MetadataEvent): | 235 | if isinstance(event, bb.event.MetadataEvent): |
| 236 | if event.type == "SinglePackageInfo": | 236 | if event.type == "SinglePackageInfo": |
| 237 | buildinfohelper.store_build_package_information(event) | 237 | buildinfohelper.store_build_package_information(event) |
| 238 | if event.type == "LayerInfo": | 238 | elif event.type == "LayerInfo": |
| 239 | buildinfohelper.store_layer_info(event) | 239 | buildinfohelper.store_layer_info(event) |
| 240 | if event.type == "BuildStatsList": | 240 | elif event.type == "BuildStatsList": |
| 241 | buildinfohelper.store_tasks_stats(event) | 241 | buildinfohelper.store_tasks_stats(event) |
| 242 | if event.type == "ImagePkgList": | 242 | elif event.type == "ImagePkgList": |
| 243 | buildinfohelper.store_target_package_data(event) | 243 | buildinfohelper.store_target_package_data(event) |
| 244 | elif event.type == "ImageFileSize": | 244 | elif event.type == "ImageFileSize": |
| 245 | buildinfohelper.update_target_image_file(event) | 245 | buildinfohelper.update_target_image_file(event) |
| 246 | elif event.type == "LicenseManifestPath": | ||
| 247 | buildinfohelper.store_license_manifest_path(event) | ||
| 246 | continue | 248 | continue |
| 247 | 249 | ||
| 248 | # ignore | 250 | # ignore |
