diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-12-08 13:11:39 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-12 08:17:29 -0600 |
commit | 25d82d331113e8797199f960ce823089c1dbf829 (patch) | |
tree | b294845d142c0f526973f25042a3541a550c6a2d /console.c | |
parent | f9800fe5a0a650d681b71e85645f8d08f6362f63 (diff) |
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 <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
(cherry picked from commit 51bfa4d3160fe1d5c2eca381020b8b6dd69c3c80)
Diffstat (limited to 'console.c')
-rw-r--r-- | console.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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); |