| Submitter | Gerd Hoffmann |
|---|---|
| Date | Dec. 8, 2009, 12:11 p.m. |
| Message ID | <1260274314-2906-9-git-send-email-kraxel@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/40616/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/console.c b/console.c index 2aeb5b3..8086bd6 100644 --- a/console.c +++ b/console.c @@ -1388,8 +1388,10 @@ static void text_console_do_init(CharDriverState *chr, DisplayState *ds, QemuOpt char msg[128]; int len; + s->t_attrib.bgcol = COLOR_BLUE; len = snprintf(msg, sizeof(msg), "%s console\r\n", chr->label); console_puts(chr, (uint8_t*)msg, len); + s->t_attrib = s->t_attrib_default; } qemu_chr_generic_open(chr);
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> --- console.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)