This fixes failure [1] of menuconfig task in rxvt-unicode terminal in case if
xterm/Konsole/Gnome is not installed. Tested with rxvt-unicode-256color

[1]
WARNING: Terminal screen is supported but did not start
ERROR: No valid terminal found, unable to open devshell.
Tried the following commands:
        tmux split-window -c "{cwd}" "do_terminal"
        tmux new-window -c "{cwd}" -n "zephyr-helloworld Configuration" 
"do_terminal"
        xfce4-terminal -T "zephyr-helloworld Configuration" -e "do_terminal"
        terminology -T="zephyr-helloworld Configuration" -e do_terminal
        mate-terminal --disable-factory -t "zephyr-helloworld Configuration" -x 
do_terminal
        konsole --separate --workdir . -p tabtitle="zephyr-helloworld 
Configuration" -e do_terminal
        gnome-terminal -t "zephyr-helloworld Configuration" -- do_terminal
        xterm -T "zephyr-helloworld Configuration" -e do_terminal
        rxvt -T "zephyr-helloworld Configuration" -e do_terminal
        tmux new -c "{cwd}" -d -s devshell -n devshell "do_terminal"
        screen -D -m -t "zephyr-helloworld Configuration" -S devshell 
do_terminal
DEBUG: Python function do_menuconfig finished

Signed-off-by: Pavel Zhukov <pazhu...@suse.de>
---
 meta/lib/oe/terminal.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 71ffc87019..4412bc14c1 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -104,6 +104,10 @@ class Rxvt(XTerminal):
     command = 'rxvt -T "{title}" -e {command}'
     priority = 1
 
+class URxvt(XTerminal):
+    command = 'urxvt -T "{title}" -e {command}'
+    priority = 1
+
 class Screen(Terminal):
     command = 'screen -D -m -t "{title}" -S devshell {command}'
 
-- 
2.39.3

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#181628): 
https://lists.openembedded.org/g/openembedded-core/message/181628
Mute This Topic: https://lists.openembedded.org/mt/99082921/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to