[bitbake-devel] [PATCH 6/6] meta/lib/oe/terminal.py: Add an additional reference to screen called screen_inline

Jason Wessel jason.wessel at windriver.com
Thu May 31 05:14:01 UTC 2012


This is a new mode for screen with the explicit purpose of invoking
screen on the same terminal that you started bitbake.  The bitbake knotty
will attempt to launch screen directly when using this setting for
OE_TERMINAL.

Signed-off-by: Jason Wessel <jason.wessel at windriver.com>
---
 meta/lib/oe/terminal.py |    7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 43639d5..5b17f76 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -100,6 +100,13 @@ class Screen(Terminal):
         logger.warn('Screen started. Please connect in another terminal with '
                     '"screen -r devshell"')
 
+class Screen_inline(Terminal):
+    command = 'screen -D -m -t "{title}" -S devshell {command}'
+
+    def __init__(self, command, title=None, env=None):
+        Terminal.__init__(self, command, title, env)
+        logger.warn('Screen Connect Command: screen -r devshell')
+
 
 def prioritized():
     return Registry.prioritized()
-- 
1.7.10





More information about the bitbake-devel mailing list