diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-10-05 10:43:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-11 05:33:01 +0100 |
commit | bd8b27b6a92142b43ead5d87450a7eaf6b4ba2e8 (patch) | |
tree | f9392b5a39748dedc6a32abee1b4e6850ffb5ef5 /bitbake/lib/bb/ui | |
parent | ceeb52a2544045fe8432e36307a321f6e934de49 (diff) | |
download | poky-bd8b27b6a92142b43ead5d87450a7eaf6b4ba2e8.tar.gz |
bitbake: toaster: ignore ReachableStamps event
Added ReachableStamps event to the list of known events to
ignore. This should stop toaster throwing error message:
ERROR: Unknown event: <bb.event.ReachableStamps>
(Bitbake rev: cd4137e13af6964858640b78aa7fe6f1612be251)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r-- | bitbake/lib/bb/ui/toasterui.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py index e0c278bb3e..3891e639bd 100644 --- a/bitbake/lib/bb/ui/toasterui.py +++ b/bitbake/lib/bb/ui/toasterui.py | |||
@@ -308,7 +308,8 @@ def main(server, eventHandler, params ): | |||
308 | bb.event.OperationProgress, | 308 | bb.event.OperationProgress, |
309 | bb.command.CommandFailed, | 309 | bb.command.CommandFailed, |
310 | bb.command.CommandExit, | 310 | bb.command.CommandExit, |
311 | bb.command.CommandCompleted)): | 311 | bb.command.CommandCompleted, |
312 | bb.event.ReachableStamps)): | ||
312 | continue | 313 | continue |
313 | 314 | ||
314 | if isinstance(event, bb.event.DepTreeGenerated): | 315 | if isinstance(event, bb.event.DepTreeGenerated): |