diff options
author | David Reyna <David.Reyna@windriver.com> | 2017-04-09 15:38:51 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-11 18:05:09 +0100 |
commit | b06f7cbb9437eff4a89e8edbfea1501135b73912 (patch) | |
tree | c1957335829217e5c4e2017434a38de7f56958ac /bitbake/lib/bb/ui/toasterui.py | |
parent | f187553b6db7832a14b58ce6aa1801711ab9ff4d (diff) | |
download | poky-b06f7cbb9437eff4a89e8edbfea1501135b73912.tar.gz |
bitbake: toaster: fix SDK artifact capture
Use the TaskArtifacts event to scan the SDK and ESDK manifests
to cleanly collect the respective artifact files.
The previous method was broken when the SDK file deployment moved
from the do_populate_sdk[_ext] tasks to their sstate tasks. That
method is disabled (but not yet removed) in preparation for the
rest of refactor work for the parent #10283 work.
[YOCTO #10850]
(Bitbake rev: 1360d7b847cc01031edb2f4b289fac9560d72fa7)
Signed-off-by: David Reyna <David.Reyna@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/toasterui.py')
-rw-r--r-- | bitbake/lib/bb/ui/toasterui.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py index 17299026ab..71f04fa5ce 100644 --- a/bitbake/lib/bb/ui/toasterui.py +++ b/bitbake/lib/bb/ui/toasterui.py | |||
@@ -438,9 +438,7 @@ def main(server, eventHandler, params): | |||
438 | elif event.type == "SetBRBE": | 438 | elif event.type == "SetBRBE": |
439 | buildinfohelper.brbe = buildinfohelper._get_data_from_event(event) | 439 | buildinfohelper.brbe = buildinfohelper._get_data_from_event(event) |
440 | elif event.type == "TaskArtifacts": | 440 | elif event.type == "TaskArtifacts": |
441 | # not implemented yet | 441 | buildinfohelper.scan_task_artifacts(event) |
442 | # see https://bugzilla.yoctoproject.org/show_bug.cgi?id=10283 for details | ||
443 | pass | ||
444 | elif event.type == "OSErrorException": | 442 | elif event.type == "OSErrorException": |
445 | logger.error(event) | 443 | logger.error(event) |
446 | else: | 444 | else: |