summaryrefslogtreecommitdiff
path: root/bitbake/lib/bb/ui
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-06 14:58:55 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:46:49 +0000
commitfcba92f3548b5fd3f4073a5d100660e9e79a67ac (patch)
tree2deab36a2e216bea350eb99e522e02f793e5ca67 /bitbake/lib/bb/ui
parent23735bb765216b7a6086bc700d32d338f7649cc6 (diff)
downloadopenembedded-core-fcba92f3548b5fd3f4073a5d100660e9e79a67ac.tar.gz
openembedded-core-fcba92f3548b5fd3f4073a5d100660e9e79a67ac.tar.bz2
openembedded-core-fcba92f3548b5fd3f4073a5d100660e9e79a67ac.tar.xz
openembedded-core-fcba92f3548b5fd3f4073a5d100660e9e79a67ac.zip
Move the runq task start/failed messages to the UI
(Bitbake rev: ab831e867f09b47001cb8da2f8f060e04febf237) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/ui')
-rw-r--r--bitbake/lib/bb/ui/knotty.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py
index d3534a0f5..b97c5a1b5 100644
--- a/bitbake/lib/bb/ui/knotty.py
+++ b/bitbake/lib/bb/ui/knotty.py
@@ -192,6 +192,17 @@ def main(server, eventHandler):
logger.error("Nothing %sPROVIDES '%s'", r, event._item)
continue
+ if isinstance(event, bb.runqueue.runQueueTaskStarted):
+ logger.info("Running task %s of %s (ID: %s, %s)",
+ event.stats.completed + event.stats.active + event.stats.failed + 1,
+ event.stats.total, event.taskid, event.taskstring)
+ continue
+
+ if isinstance(event, bb.runqueue.runQueueTaskFailed):
+ logger.error("Task %s (%s) failed with exit code '%s'",
+ event.taskid, event.taskstring, event.exitcode)
+ continue
+
# ignore
if isinstance(event, (bb.event.BuildBase,
bb.event.StampUpdate,