add pc-1.2

This commit is contained in:
Gerd Hoffmann 2012-06-11 10:38:22 +02:00
parent 13d1fd44c4
commit f1dacf1ced
1 changed files with 10 additions and 2 deletions

View File

@ -349,8 +349,8 @@ static void pc_xen_hvm_init(ram_addr_t ram_size,
} }
#endif #endif
static QEMUMachine pc_machine_v1_1 = { static QEMUMachine pc_machine_v1_2 = {
.name = "pc-1.1", .name = "pc-1.2",
.alias = "pc", .alias = "pc",
.desc = "Standard PC", .desc = "Standard PC",
.init = pc_init_pci, .init = pc_init_pci,
@ -358,6 +358,13 @@ static QEMUMachine pc_machine_v1_1 = {
.is_default = 1, .is_default = 1,
}; };
static QEMUMachine pc_machine_v1_1 = {
.name = "pc-1.1",
.desc = "Standard PC",
.init = pc_init_pci,
.max_cpus = 255,
};
#define PC_COMPAT_1_0 \ #define PC_COMPAT_1_0 \
{\ {\
.driver = "pc-sysfw",\ .driver = "pc-sysfw",\
@ -612,6 +619,7 @@ static QEMUMachine xenfv_machine = {
static void pc_machine_init(void) static void pc_machine_init(void)
{ {
qemu_register_machine(&pc_machine_v1_2);
qemu_register_machine(&pc_machine_v1_1); qemu_register_machine(&pc_machine_v1_1);
qemu_register_machine(&pc_machine_v1_0); qemu_register_machine(&pc_machine_v1_0);
qemu_register_machine(&pc_machine_v0_15); qemu_register_machine(&pc_machine_v0_15);