Olaf Hering
7adb207e17
- Update to v2.6.0-rc0: See http://wiki.qemu-project.org/ChangeLog/2.6 * Patch queue updated from git://github.com/openSUSE/qemu.git opensuse-2.6 * Accept every size in DISCARD request from a guest (bsc#964427) 0039-block-split-large-discard-requests-.patch * Recognize libxl flag to disable flush in block device (bsc#879425) 0040-xen_disk-Add-suse-specific-flush-di.patch * Use correct flag for crypto tests 0041-tests-Use-correct-config-param-for-.patch * Fix build on powerpc: 0042-build-link-with-libatomic-on-powerp.patch * Patches dropped (upstreamed): seabios_checkrom_typo.patch seabios_avoid_smbios_signature_string.patch OBS-URL: https://build.opensuse.org/request/show/383004 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=289
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From e4f5122f79d8570c5e6e42b4207ae1b761e48901 Mon Sep 17 00:00:00 2001
|
|
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>
|
|
---
|
|
ui/console.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/ui/console.c b/ui/console.c
|
|
index 1fd4ea4..fd3254a 100644
|
|
--- a/ui/console.c
|
|
+++ b/ui/console.c
|
|
@@ -868,7 +868,7 @@ static void console_putchar(QemuConsole *s, int ch)
|
|
} else {
|
|
if (s->nb_esc_params < MAX_ESC_PARAMS)
|
|
s->nb_esc_params++;
|
|
- if (ch == ';')
|
|
+ if (ch == ';' || ch == '?')
|
|
break;
|
|
trace_console_putchar_csi(s->esc_params[0], s->esc_params[1],
|
|
ch, s->nb_esc_params);
|