[oe-commits] Andre McCurdy : lib/oe/terminal.py: add support for MATE desktop terminals

git at git.openembedded.org git at git.openembedded.org
Tue Aug 13 12:06:19 UTC 2013


Module: openembedded-core.git
Branch: dylan
Commit: 6abc94f00daa04d8b180ef2242add19d3da2e043
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=6abc94f00daa04d8b180ef2242add19d3da2e043

Author: Andre McCurdy <andre.mccurdy at entropic.com>
Date:   Mon Jul 29 10:59:44 2013 +0200

lib/oe/terminal.py: add support for MATE desktop terminals

A simple clone of the corresponding Gnome class. Without this, devshell
fails completely on a default installation of MATE desktop Linux Mint 15.

(From OE-Core master rev: 8cc078a9c679845464c59028f584d7aba098cc1f)

Signed-off-by: Andre McCurdy <andre.mccurdy at entropic.com>
Signed-off-by: Nicolas Dechesne <nicolas.dechesne at linaro.org>
Signed-off-by: Saul Wold <sgw at linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/lib/oe/terminal.py |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 66197a8..1ae6a11 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -55,6 +55,10 @@ class Gnome(XTerminal):
     command = 'gnome-terminal --disable-factory -t "{title}" -x {command}'
     priority = 2
 
+class Mate(XTerminal):
+    command = 'mate-terminal --disable-factory -t "{title}" -x {command}'
+    priority = 2
+
 class Xfce(XTerminal):
     command = 'Terminal -T "{title}" -e "{command}"'
     priority = 2



More information about the Openembedded-commits mailing list