Commit d47d13b99b945e7159a9075595008091ce123441
1 parent
045df330
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 <jan.kiszka@siemens.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6705 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
vl.c
... | ... | @@ -4696,7 +4696,7 @@ int main(int argc, char **argv, char **envp) |
4696 | 4696 | kernel_cmdline = ""; |
4697 | 4697 | cyls = heads = secs = 0; |
4698 | 4698 | translation = BIOS_ATA_TRANSLATION_AUTO; |
4699 | - monitor_device = "vc"; | |
4699 | + monitor_device = "vc:80Cx24C"; | |
4700 | 4700 | |
4701 | 4701 | serial_devices[0] = "vc:80Cx24C"; |
4702 | 4702 | for(i = 1; i < MAX_SERIAL_PORTS; i++) | ... | ... |