mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
Additional VGA options for MIPS Malta
Support all kinds of pci vga cards (including none) Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6557 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
b4abdfa4fb
commit
1f605a7641
3 changed files with 11 additions and 2 deletions
|
@ -941,8 +941,16 @@ void mips_malta_init (ram_addr_t ram_size, int vga_ram_size,
|
|||
network_init(pci_bus);
|
||||
|
||||
/* Optional PCI video card */
|
||||
pci_cirrus_vga_init(pci_bus, phys_ram_base + ram_size,
|
||||
if (cirrus_vga_enabled) {
|
||||
pci_cirrus_vga_init(pci_bus, phys_ram_base + ram_size,
|
||||
ram_size, vga_ram_size);
|
||||
} else if (vmsvga_enabled) {
|
||||
pci_vmsvga_init(pci_bus, phys_ram_base + ram_size,
|
||||
ram_size, vga_ram_size);
|
||||
} else if (std_vga_enabled) {
|
||||
pci_vga_init(pci_bus, phys_ram_base + ram_size,
|
||||
ram_size, vga_ram_size, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
QEMUMachine mips_malta_machine = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue