diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-18 12:59:12 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-12-18 12:59:12 -0600 |
commit | ce01a508e8053350544c88ba68a3f90c44b6bb93 (patch) | |
tree | 8de254f26e35bcec02148d67ac2a32986ebbe0f0 /hw/pc_piix.c | |
parent | 5ab97b7f81dccccee03a3f1d03a4d09a27f0eeff (diff) | |
download | qemu-ce01a508e8053350544c88ba68a3f90c44b6bb93.tar.gz qemu-ce01a508e8053350544c88ba68a3f90c44b6bb93.tar.bz2 qemu-ce01a508e8053350544c88ba68a3f90c44b6bb93.zip |
pc: add pc-0.15
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pc_piix.c')
-rw-r--r-- | hw/pc_piix.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 166c2fc25a..265ccb23d4 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -321,6 +321,14 @@ static QEMUMachine pc_machine_v1_0 = { .is_default = 1, }; +static QEMUMachine pc_machine_v0_15 = { + .name = "pc-0.15", + .desc = "Standard PC", + .init = pc_init_pci, + .max_cpus = 255, + .is_default = 1, +}; + static QEMUMachine pc_machine_v0_14 = { .name = "pc-0.14", .desc = "Standard PC", @@ -572,6 +580,7 @@ static QEMUMachine xenfv_machine = { static void pc_machine_init(void) { qemu_register_machine(&pc_machine_v1_0); + qemu_register_machine(&pc_machine_v0_15); qemu_register_machine(&pc_machine_v0_14); qemu_register_machine(&pc_machine_v0_13); qemu_register_machine(&pc_machine_v0_12); |