diff options
-rw-r--r-- | 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 3767935586..3965462598 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py | |||
@@ -70,7 +70,12 @@ class Rxvt(XTerminal): | |||
70 | priority = 1 | 70 | priority = 1 |
71 | 71 | ||
72 | class Screen(Terminal): | 72 | class Screen(Terminal): |
73 | command = 'screen -D -m -t "{title}" {command}' | 73 | command = 'screen -D -m -t "{title}" -S devshell {command}' |
74 | |||
75 | def __init__(self, command, title=None, env=None): | ||
76 | Terminal.__init__(self, command, title, env) | ||
77 | logger.warn('Screen started. Please connect in another terminal with ' | ||
78 | '"screen -r devshell"') | ||
74 | 79 | ||
75 | 80 | ||
76 | def prioritized(): | 81 | def prioritized(): |