diff options
author | Shane Wang <shane.wang@intel.com> | 2012-02-23 21:47:16 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-23 22:52:17 +0000 |
commit | 8fa33800efa530c765d85a520110285467ff29c2 (patch) | |
tree | 62cdc94429ed5772df63d0f200fdc49ccf0528a0 /bitbake/lib/bb/ui | |
parent | de77b9752ab2df56d87dc15ed5cd0d2cd5544dc7 (diff) | |
download | poky-8fa33800efa530c765d85a520110285467ff29c2.tar.gz |
bitbake: change for adding progress bar in Hob2.
The changes include:
- Clean some events in event.py
- Fire essential events for Hob2 to handle with more information.
- knotty changes
(Bitbake rev: 9ede881620c501574f014e600cea6947ea908ac2)
Signed-off-by: Shane Wang <shane.wang@intel.com>
Signed-off-by: Dongxiao Xu <dongxiao.xu@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/knotty.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 158a132726..e2e6ac3d65 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -263,7 +263,10 @@ def main(server, eventHandler): | |||
263 | bb.event.RecipeParsed, | 263 | bb.event.RecipeParsed, |
264 | bb.event.RecipePreFinalise, | 264 | bb.event.RecipePreFinalise, |
265 | bb.runqueue.runQueueEvent, | 265 | bb.runqueue.runQueueEvent, |
266 | bb.runqueue.runQueueExitWait)): | 266 | bb.runqueue.runQueueExitWait, |
267 | bb.event.OperationStarted, | ||
268 | bb.event.OperationCompleted, | ||
269 | bb.event.OperationProgress)): | ||
267 | continue | 270 | continue |
268 | 271 | ||
269 | logger.error("Unknown event: %s", event) | 272 | logger.error("Unknown event: %s", event) |