From patchwork Thu Nov 11 11:59:25 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 70797 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B3341B7124 for ; Thu, 11 Nov 2010 23:00:56 +1100 (EST) Received: from localhost ([127.0.0.1]:45726 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGVpm-0000Hu-5t for incoming@patchwork.ozlabs.org; Thu, 11 Nov 2010 07:00:54 -0500 Received: from [140.186.70.92] (port=37371 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PGVoT-0000G7-F8 for qemu-devel@nongnu.org; Thu, 11 Nov 2010 06:59:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PGVoR-0000TZ-7p for qemu-devel@nongnu.org; Thu, 11 Nov 2010 06:59:33 -0500 Received: from mx1.redhat.com ([209.132.183.28]:25039) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PGVoQ-0000TI-Vu for qemu-devel@nongnu.org; Thu, 11 Nov 2010 06:59:31 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id oABBxTq5025341 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 11 Nov 2010 06:59:29 -0500 Received: from rincewind.home.kraxel.org (vpn1-5-144.ams2.redhat.com [10.36.5.144]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id oABBxRnQ009717; Thu, 11 Nov 2010 06:59:28 -0500 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 29AF14589C; Thu, 11 Nov 2010 12:59:26 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Thu, 11 Nov 2010 12:59:25 +0100 Message-Id: <1289476766-18070-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1289476766-18070-1-git-send-email-kraxel@redhat.com> References: <1289476766-18070-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH 1/2] pc: add 0.13 pc machine type X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Gerd Hoffmann --- hw/pc_piix.c | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index e82bfd1..af01cfb 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -213,7 +213,7 @@ static void pc_init_isa(ram_addr_t ram_size, } static QEMUMachine pc_machine = { - .name = "pc-0.13", + .name = "pc-0.14", .alias = "pc", .desc = "Standard PC", .init = pc_init_pci, @@ -221,6 +221,13 @@ static QEMUMachine pc_machine = { .is_default = 1, }; +static QEMUMachine pc_machine_v0_13 = { + .name = "pc-0.13", + .desc = "Standard PC", + .init = pc_init_pci, + .max_cpus = 255, +}; + static QEMUMachine pc_machine_v0_12 = { .name = "pc-0.12", .desc = "Standard PC", @@ -386,6 +393,7 @@ static QEMUMachine pc_machine_rhel600 = { static void pc_machine_init(void) { qemu_register_machine(&pc_machine); + qemu_register_machine(&pc_machine_v0_13); qemu_register_machine(&pc_machine_v0_12); qemu_register_machine(&pc_machine_v0_11); qemu_register_machine(&pc_machine_v0_10);