mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-31 14:02:05 -06:00
pc: add 1.0 machine type
This patch adds a pc-1.0 machine type. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
6023d83248
commit
19857e625a
1 changed files with 11 additions and 3 deletions
14
hw/pc_piix.c
14
hw/pc_piix.c
|
@ -297,8 +297,8 @@ static void pc_xen_hvm_init(ram_addr_t ram_size,
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static QEMUMachine pc_machine = {
|
static QEMUMachine pc_machine_v1_0 = {
|
||||||
.name = "pc-0.14",
|
.name = "pc-1.0",
|
||||||
.alias = "pc",
|
.alias = "pc",
|
||||||
.desc = "Standard PC",
|
.desc = "Standard PC",
|
||||||
.init = pc_init_pci,
|
.init = pc_init_pci,
|
||||||
|
@ -306,6 +306,13 @@ static QEMUMachine pc_machine = {
|
||||||
.is_default = 1,
|
.is_default = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static QEMUMachine pc_machine_v0_14 = {
|
||||||
|
.name = "pc-0.14",
|
||||||
|
.desc = "Standard PC",
|
||||||
|
.init = pc_init_pci,
|
||||||
|
.max_cpus = 255,
|
||||||
|
};
|
||||||
|
|
||||||
static QEMUMachine pc_machine_v0_13 = {
|
static QEMUMachine pc_machine_v0_13 = {
|
||||||
.name = "pc-0.13",
|
.name = "pc-0.13",
|
||||||
.desc = "Standard PC",
|
.desc = "Standard PC",
|
||||||
|
@ -521,7 +528,8 @@ static QEMUMachine xenfv_machine = {
|
||||||
|
|
||||||
static void pc_machine_init(void)
|
static void pc_machine_init(void)
|
||||||
{
|
{
|
||||||
qemu_register_machine(&pc_machine);
|
qemu_register_machine(&pc_machine_v1_0);
|
||||||
|
qemu_register_machine(&pc_machine_v0_14);
|
||||||
qemu_register_machine(&pc_machine_v0_13);
|
qemu_register_machine(&pc_machine_v0_13);
|
||||||
qemu_register_machine(&pc_machine_v0_12);
|
qemu_register_machine(&pc_machine_v0_12);
|
||||||
qemu_register_machine(&pc_machine_v0_11);
|
qemu_register_machine(&pc_machine_v0_11);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue