[OE-core] [PATCH 3/3] oe.terminal: improve how we spawn screen

Chris Larson kergoth at gmail.com
Tue Apr 5 19:08:07 UTC 2011


From: Chris Larson <chris_larson at mentor.com>

- Name the screen session 'devshell', to avoid confusion if running bitbake
  itself under a screen session.
- Display a warning message when spawning screen, so it's clear to the user
  that screen has been run (otherwise do_devshell just appears to hang).

Signed-off-by: Chris Larson <chris_larson at mentor.com>
---
 meta/lib/oe/terminal.py |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 8c8e5b2..a94b113 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -68,7 +68,12 @@ class Rxvt(XTerminal):
     priority = 1
 
 class Screen(Terminal):
-    cmd = 'screen -D -m -t "{title}" {cmd}'
+    cmd = 'screen -D -m -t "{title}" -S devshell {cmd}'
+
+    def __init__(self, cmd, title=None):
+        logger.warn('Screen started. Please connect in another terminal with '
+                    '"screen -r devshell"')
+        Terminal.__init__(self, cmd, title)
 
 
 def prioritized():
-- 
1.7.4.1





More information about the Openembedded-core mailing list