2017-08-31 00:22:50 +02:00
|
|
|
From 8f591fd391262fbf76373136fc5a1629635b4de4 Mon Sep 17 00:00:00 2001
|
2012-12-13 11:49:19 +01:00
|
|
|
From: Alexander Graf <agraf@suse.de>
|
|
|
|
Date: Mon, 6 Jun 2011 06:53:52 +0200
|
|
|
|
Subject: [PATCH] console: add question-mark escape operator
|
|
|
|
|
|
|
|
Some termcaps (found using SLES11SP1) use [? sequences. According to man
|
|
|
|
console_codes (http://linux.die.net/man/4/console_codes) the question mark
|
|
|
|
is a nop and should simply be ignored.
|
|
|
|
|
|
|
|
This patch does exactly that, rendering screen output readable when
|
|
|
|
outputting guest serial consoles to the graphical console emulator.
|
|
|
|
|
|
|
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
|
|
|
---
|
2014-01-17 23:04:30 +01:00
|
|
|
ui/console.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2012-12-13 11:49:19 +01:00
|
|
|
|
2013-02-10 19:32:29 +01:00
|
|
|
diff --git a/ui/console.c b/ui/console.c
|
2017-08-31 00:22:50 +02:00
|
|
|
index d2d3534c49..c28e19c375 100644
|
2013-02-10 19:32:29 +01:00
|
|
|
--- a/ui/console.c
|
|
|
|
+++ b/ui/console.c
|
2017-03-29 06:22:10 +02:00
|
|
|
@@ -880,7 +880,7 @@ static void console_putchar(QemuConsole *s, int ch)
|
2012-12-13 11:49:19 +01:00
|
|
|
} else {
|
|
|
|
if (s->nb_esc_params < MAX_ESC_PARAMS)
|
|
|
|
s->nb_esc_params++;
|
|
|
|
- if (ch == ';')
|
|
|
|
+ if (ch == ';' || ch == '?')
|
|
|
|
break;
|
2014-03-20 01:26:56 +01:00
|
|
|
trace_console_putchar_csi(s->esc_params[0], s->esc_params[1],
|
|
|
|
ch, s->nb_esc_params);
|