From f87babe3f82c8f6a225981b4e5f3cf5091450487 Mon Sep 17 00:00:00 2001 From: Filipe Rinaldi Date: Wed, 11 Feb 2026 12:17:24 +0000 Subject: [PATCH] lib/fvp: remove FVP buit-in portion of the terminal name This patch ignores the built-in FVP UART name when setting the terminal names on tmux. The rationale is that appending FVP UART name takes a lot of space making it unusable on complex platforms with many terminals. Signed-off-by: Filipe Rinaldi Signed-off-by: Jon Mason --- meta-arm/lib/fvp/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm/lib/fvp/terminal.py b/meta-arm/lib/fvp/terminal.py index 2f123110..280fb349 100644 --- a/meta-arm/lib/fvp/terminal.py +++ b/meta-arm/lib/fvp/terminal.py @@ -53,7 +53,7 @@ class Terminals: terminals = Terminals() # TODO: option to switch between telnet and netcat connect_command = "telnet localhost %port" -terminals.add_terminal(2, "tmux", f"tmux new-window -n \"{{name}} - %title\" \"{connect_command}\"") +terminals.add_terminal(2, "tmux", f"tmux new-window -n \"{{name}}\" \"{connect_command}\"") terminals.add_terminal(2, "gnome-terminal", f"gnome-terminal --window --title \"{{name}} - %title\" --command \"{connect_command}\"") terminals.add_terminal(1, "xterm", f"xterm -title \"{{name}} - %title\" -e {connect_command}") terminals.add_terminal(0, "none", None)