| Submitter | Christopher Larson |
|---|---|
| Date | April 5, 2011, 7:08 p.m. |
| Message ID | <982144c56f216da099f77847abae4cbbf2fcb643.1302030219.git.chris_larson@mentor.com> |
| Download | mbox | patch |
| Permalink | /patch/1953/ |
| State | New, archived |
| Headers | show |
Comments
Patch
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():