From: aliguori Date: Thu, 5 Mar 2009 23:00:53 +0000 (+0000) Subject: monitor: Use reasonable default virtual console size (Jan Kiszka) X-Git-Tag: 0.10.0-0sb10~1885 X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=d47d13b99b945e7159a9075595008091ce123441;p=qemu monitor: Use reasonable default virtual console size (Jan Kiszka) If a target uses a tiny display (like the MusicPal), the default monitor is currently set to the same size. Fix this by applying the same defaults like already used serial and virtio consoles. Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6705 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/vl.c b/vl.c index 9ba6bc4..0f06aa9 100644 --- a/vl.c +++ b/vl.c @@ -4696,7 +4696,7 @@ int main(int argc, char **argv, char **envp) kernel_cmdline = ""; cyls = heads = secs = 0; translation = BIOS_ATA_TRANSLATION_AUTO; - monitor_device = "vc"; + monitor_device = "vc:80Cx24C"; serial_devices[0] = "vc:80Cx24C"; for(i = 1; i < MAX_SERIAL_PORTS; i++)