From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58983) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGmAL-0003Lf-MF for qemu-devel@nongnu.org; Wed, 26 Sep 2012 03:36:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TGmAJ-0000Qc-Iv for qemu-devel@nongnu.org; Wed, 26 Sep 2012 03:36:17 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21718) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TGmAJ-0000Og-9h for qemu-devel@nongnu.org; Wed, 26 Sep 2012 03:36:15 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q8Q7aDoi013457 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 26 Sep 2012 03:36:14 -0400 From: Gerd Hoffmann Date: Wed, 26 Sep 2012 09:36:04 +0200 Message-Id: <1348644971-3490-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1348644971-3490-1-git-send-email-kraxel@redhat.com> References: <1348644971-3490-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 1/8] add pc-1.3 machine type List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- hw/pc_piix.c | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 88ff041..5a0796b 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -349,8 +349,8 @@ static void pc_xen_hvm_init(ram_addr_t ram_size, } #endif -static QEMUMachine pc_machine_v1_2 = { - .name = "pc-1.2", +static QEMUMachine pc_machine_v1_3 = { + .name = "pc-1.3", .alias = "pc", .desc = "Standard PC", .init = pc_init_pci, @@ -358,6 +358,13 @@ static QEMUMachine pc_machine_v1_2 = { .is_default = 1, }; +static QEMUMachine pc_machine_v1_2 = { + .name = "pc-1.2", + .desc = "Standard PC", + .init = pc_init_pci, + .max_cpus = 255, +}; + #define PC_COMPAT_1_1 \ {\ .driver = "virtio-scsi-pci",\ @@ -655,6 +662,7 @@ static QEMUMachine xenfv_machine = { static void pc_machine_init(void) { + qemu_register_machine(&pc_machine_v1_3); qemu_register_machine(&pc_machine_v1_2); qemu_register_machine(&pc_machine_v1_1); qemu_register_machine(&pc_machine_v1_0); -- 1.7.1