diff options
-rw-r--r-- | bitbake/lib/bb/ui/buildinfohelper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py index be0de6b17c..4e2d4a7dec 100644 --- a/bitbake/lib/bb/ui/buildinfohelper.py +++ b/bitbake/lib/bb/ui/buildinfohelper.py | |||
@@ -770,7 +770,7 @@ class BuildInfoHelper(object): | |||
770 | if t.is_image == True: | 770 | if t.is_image == True: |
771 | output_files = list(evdata.viewkeys()) | 771 | output_files = list(evdata.viewkeys()) |
772 | for output in output_files: | 772 | for output in output_files: |
773 | if t.target in output and output.split('.rootfs.')[1] in image_fstypes: | 773 | if t.target in output and 'rootfs' in output and not output.endswith(".manifest"): |
774 | self.orm_wrapper.save_target_image_file_information(t, output, evdata[output]) | 774 | self.orm_wrapper.save_target_image_file_information(t, output, evdata[output]) |
775 | 775 | ||
776 | def update_artifact_image_file(self, event): | 776 | def update_artifact_image_file(self, event): |