mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 09:49:33 +02:00
bitbake: toaster: add license manifest path to database
Based on image_name, the target is obtained, and the path is added to the database. [YOCTO #5649] (Bitbake rev: 911b5191133956c30d53f57629c115db196b9ac8) Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
839f30486e
commit
5396191fed
@@ -235,14 +235,16 @@ def main(server, eventHandler, params ):
|
||||
if isinstance(event, bb.event.MetadataEvent):
|
||||
if event.type == "SinglePackageInfo":
|
||||
buildinfohelper.store_build_package_information(event)
|
||||
if event.type == "LayerInfo":
|
||||
elif event.type == "LayerInfo":
|
||||
buildinfohelper.store_layer_info(event)
|
||||
if event.type == "BuildStatsList":
|
||||
elif event.type == "BuildStatsList":
|
||||
buildinfohelper.store_tasks_stats(event)
|
||||
if event.type == "ImagePkgList":
|
||||
elif event.type == "ImagePkgList":
|
||||
buildinfohelper.store_target_package_data(event)
|
||||
elif event.type == "ImageFileSize":
|
||||
buildinfohelper.update_target_image_file(event)
|
||||
elif event.type == "LicenseManifestPath":
|
||||
buildinfohelper.store_license_manifest_path(event)
|
||||
continue
|
||||
|
||||
# ignore
|
||||
|
||||
Reference in New Issue
Block a user