diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-15 20:37:28 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-15 20:37:28 +0000 |
commit | c50be288d9a4cdc40383434e9a07272bf0084f3d (patch) | |
tree | debc8d853f8debcbab913ad2ae9ac5c18490ba4e /sysemu.h | |
parent | 05f2c38fb7709517b6d4e94fd37ae81beecbbea0 (diff) | |
download | qemu-c50be288d9a4cdc40383434e9a07272bf0084f3d.tar.gz qemu-c50be288d9a4cdc40383434e9a07272bf0084f3d.tar.bz2 qemu-c50be288d9a4cdc40383434e9a07272bf0084f3d.zip |
add a -vga none cli option (Stefano Stabellini)
currently there is no way to fully disable any graphic card device for
the PC architecture.
You can have no graphical output, thanks to -nographic, but you would
have the VGA device connected to your PCI bus anyway.
There is already a convenient -vga option to choose between std, cirrus
and vmware; this patch add the new option "none" to select no graphic
card at all.
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6322 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'sysemu.h')
-rw-r--r-- | sysemu.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -83,6 +83,7 @@ void do_info_slirp(void); extern int bios_size; extern int cirrus_vga_enabled; +extern int std_vga_enabled; extern int vmsvga_enabled; extern int graphic_width; extern int graphic_height; |