From 51bfa4d3160fe1d5c2eca381020b8b6dd69c3c80 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Tue, 8 Dec 2009 13:11:39 +0100 Subject: chardev: move greeting into vc backend. Make the 'vc' chardev backend print a title line with the chardev name after initialization, using CharDriverState->label. This replaces the banner printing code in vl.c. Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori --- console.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'console.c') diff --git a/console.c b/console.c index 82ddbe4d91..2aeb5b33c5 100644 --- a/console.c +++ b/console.c @@ -1384,6 +1384,14 @@ static void text_console_do_init(CharDriverState *chr, DisplayState *ds, QemuOpt s->t_attrib = s->t_attrib_default; text_console_resize(s); + if (chr->label) { + char msg[128]; + int len; + + len = snprintf(msg, sizeof(msg), "%s console\r\n", chr->label); + console_puts(chr, (uint8_t*)msg, len); + } + qemu_chr_generic_open(chr); if (chr->init) chr->init(chr); -- cgit v1.2.1