summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/runningbuild.py
diff options
context:
space:
mode:
authorJason Wessel <jason.wessel@windriver.com>2012-09-17 17:43:49 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-24 15:35:32 +0100
commit98ac5e4e6230095487b819b911890ec64e28d5f7 (patch)
treec25e92de41ccdeca570fb3a7b744c0b3327f2c17 /bitbake/lib/bb/ui/crumbs/runningbuild.py
parenteab93b0d625aba061a73b9c5f7ce7828495f1338 (diff)
downloadpoky-98ac5e4e6230095487b819b911890ec64e28d5f7.tar.gz
bitbake: event.py, knotty.py, ncurses.py, runningbuild.py: Add support for LogExecTTY event
The LogExecTTY even is intended to provide the ability to spawn a task on a the controlling tty, if a tty is availble. When a controlling tty is not availble the previous behavior is preserved where a warning is issued about the action an end user must execute. All the available UI's were tested against the new event type. This feature is primarily intended for hooking up a screen client session automatically on the controlling tty to allow for a more streamlined end user experience when using a pure command line driven environment. The changes that send the LogExecTTY event are in the oe-core side. (Bitbake rev: cffe80d82a46aaf52ff4a7b6409435754043553f) Signed-off-by: Jason Wessel <jason.wessel@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/runningbuild.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/runningbuild.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py
index a57d6db5e5..700fd65015 100644
--- a/bitbake/lib/bb/ui/crumbs/runningbuild.py
+++ b/bitbake/lib/bb/ui/crumbs/runningbuild.py
@@ -375,6 +375,21 @@ class RunningBuild (gobject.GObject):
375 msg += ("%s\n" % reason) 375 msg += ("%s\n" % reason)
376 self.emit("no-provider", msg) 376 self.emit("no-provider", msg)
377 self.emit("log", msg) 377 self.emit("log", msg)
378 elif isinstance(event, bb.event.LogExecTTY):
379 icon = "dialog-warning"
380 color = HobColors.WARNING
381 if self.sequential or not parent:
382 tree_add = self.model.append
383 else:
384 tree_add = self.model.prepend
385 tree_add(parent,
386 (None,
387 package,
388 task,
389 event.msg,
390 icon,
391 color,
392 0))
378 else: 393 else:
379 if not isinstance(event, (bb.event.BuildBase, 394 if not isinstance(event, (bb.event.BuildBase,
380 bb.event.StampUpdate, 395 bb.event.StampUpdate,