diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/toaster.bbclass | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/classes/toaster.bbclass b/meta/classes/toaster.bbclass index fba9067f0a..e307014a6a 100644 --- a/meta/classes/toaster.bbclass +++ b/meta/classes/toaster.bbclass | |||
@@ -159,7 +159,7 @@ python toaster_image_dumpdata() { | |||
159 | except OSError as e: | 159 | except OSError as e: |
160 | bb.event.fire(bb.event.MetadataEvent("OSErrorException", e), d) | 160 | bb.event.fire(bb.event.MetadataEvent("OSErrorException", e), d) |
161 | 161 | ||
162 | bb.event.fire(bb.event.MetadataEvent("ImageFileSize",image_info_data), d) | 162 | bb.event.fire(bb.event.MetadataEvent("ImageFileSize", image_info_data), d) |
163 | } | 163 | } |
164 | 164 | ||
165 | python toaster_artifact_dumpdata() { | 165 | python toaster_artifact_dumpdata() { |
@@ -175,14 +175,12 @@ python toaster_artifact_dumpdata() { | |||
175 | for fn in filenames: | 175 | for fn in filenames: |
176 | try: | 176 | try: |
177 | artifact_path = os.path.join(dirpath, fn) | 177 | artifact_path = os.path.join(dirpath, fn) |
178 | filestat = os.stat(artifact_path) | ||
179 | if not os.path.islink(artifact_path): | 178 | if not os.path.islink(artifact_path): |
180 | artifact_info_data[artifact_path] = filestat.st_size | 179 | artifact_info_data[artifact_path] = os.stat(artifact_path).st_size |
181 | except OSError as e: | 180 | except OSError as e: |
182 | import sys | ||
183 | bb.event.fire(bb.event.MetadataEvent("OSErrorException", e), d) | 181 | bb.event.fire(bb.event.MetadataEvent("OSErrorException", e), d) |
184 | 182 | ||
185 | bb.event.fire(bb.event.MetadataEvent("ArtifactFileSize",artifact_info_data), d) | 183 | bb.event.fire(bb.event.MetadataEvent("ArtifactFileSize", artifact_info_data), d) |
186 | } | 184 | } |
187 | 185 | ||
188 | # collect list of buildstats files based on fired events; when the build completes, collect all stats and fire an event with collected data | 186 | # collect list of buildstats files based on fired events; when the build completes, collect all stats and fire an event with collected data |
@@ -357,9 +355,11 @@ toaster_buildhistory_dump[eventmask] = "bb.event.BuildCompleted" | |||
357 | do_package[postfuncs] += "toaster_package_dumpdata " | 355 | do_package[postfuncs] += "toaster_package_dumpdata " |
358 | do_package[vardepsexclude] += "toaster_package_dumpdata " | 356 | do_package[vardepsexclude] += "toaster_package_dumpdata " |
359 | 357 | ||
360 | do_rootfs[postfuncs] += "toaster_image_dumpdata " | 358 | do_image_complete[postfuncs] += "toaster_image_dumpdata " |
359 | do_image_complete[vardepsexclude] += "toaster_image_dumpdata " | ||
360 | |||
361 | do_rootfs[postfuncs] += "toaster_licensemanifest_dump " | 361 | do_rootfs[postfuncs] += "toaster_licensemanifest_dump " |
362 | do_rootfs[vardepsexclude] += "toaster_image_dumpdata toaster_licensemanifest_dump " | 362 | do_rootfs[vardepsexclude] += "toaster_licensemanifest_dump " |
363 | 363 | ||
364 | do_populate_sdk[postfuncs] += "toaster_artifact_dumpdata " | 364 | do_populate_sdk[postfuncs] += "toaster_artifact_dumpdata " |
365 | do_populate_sdk[vardepsexclude] += "toaster_artifact_dumpdata " | 365 | do_populate_sdk[vardepsexclude] += "toaster_artifact_dumpdata " |