diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-04 00:50:34 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-04 00:50:34 +0000 |
commit | c75a823c80b276b0a3976f78340693dffee3c735 (patch) | |
tree | caf6e82dd30625687a7b68006d02361a26a0f9d4 /vl.c | |
parent | a40e56d570ee8203be3f5d11fad92ac70cbb4f86 (diff) | |
download | qemu-c75a823c80b276b0a3976f78340693dffee3c735.zip |
Set default console size
(Stefan Weil)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4316 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8310,14 +8310,14 @@ int main(int argc, char **argv) kernel_cmdline = ""; cyls = heads = secs = 0; translation = BIOS_ATA_TRANSLATION_AUTO; - monitor_device = "vc"; + monitor_device = "vc:800x600"; - serial_devices[0] = "vc"; + serial_devices[0] = "vc:80Cx24C"; for(i = 1; i < MAX_SERIAL_PORTS; i++) serial_devices[i] = NULL; serial_device_index = 0; - parallel_devices[0] = "vc"; + parallel_devices[0] = "vc:640x480"; for(i = 1; i < MAX_PARALLEL_PORTS; i++) parallel_devices[i] = NULL; parallel_device_index = 0; |