mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Merge branch 'spice.v23.pull' of git://anongit.freedesktop.org/spice/qemu
* 'spice.v23.pull' of git://anongit.freedesktop.org/spice/qemu: vnc/spice: add set_passwd monitor command. vnc: support password expire vnc: auth reject cleanup spice: add qmp 'query-spice' and hmp 'info spice' commands. spice: connection events. spice: add qxl device spice: add qxl vgabios binary.
This commit is contained in:
commit
818c2e1b97
24 changed files with 2887 additions and 22 deletions
8
hw/pc.c
8
hw/pc.c
|
@ -40,6 +40,7 @@
|
|||
#include "sysbus.h"
|
||||
#include "sysemu.h"
|
||||
#include "blockdev.h"
|
||||
#include "ui/qemu-spice.h"
|
||||
|
||||
/* output Bochs bios info messages */
|
||||
//#define DEBUG_BIOS
|
||||
|
@ -992,6 +993,13 @@ void pc_vga_init(PCIBus *pci_bus)
|
|||
pci_vmsvga_init(pci_bus);
|
||||
else
|
||||
fprintf(stderr, "%s: vmware_vga: no PCI bus\n", __FUNCTION__);
|
||||
#ifdef CONFIG_SPICE
|
||||
} else if (qxl_enabled) {
|
||||
if (pci_bus)
|
||||
pci_create_simple(pci_bus, -1, "qxl-vga");
|
||||
else
|
||||
fprintf(stderr, "%s: qxl: no PCI bus\n", __FUNCTION__);
|
||||
#endif
|
||||
} else if (std_vga_enabled) {
|
||||
if (pci_bus) {
|
||||
pci_vga_init(pci_bus);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue