From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nh14E-0005Z6-Ao for qemu-devel@nongnu.org; Mon, 15 Feb 2010 08:32:50 -0500 Received: from [199.232.76.173] (port=49471 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nh14D-0005Yc-HE for qemu-devel@nongnu.org; Mon, 15 Feb 2010 08:32:49 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nh14C-0001HF-FW for qemu-devel@nongnu.org; Mon, 15 Feb 2010 08:32:49 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46464) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nh14C-0001H9-2M for qemu-devel@nongnu.org; Mon, 15 Feb 2010 08:32:48 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o1FDWkhm031678 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 15 Feb 2010 08:32:47 -0500 From: Amit Shah Date: Mon, 15 Feb 2010 19:01:34 +0530 Message-Id: <1266240696-17880-1-git-send-email-amit.shah@redhat.com> Subject: [Qemu-devel] [PATCH 1/3] pc: Bump up pc version to 0.13 and add a 0.12 compat version List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Amit Shah , kraxel@redhat.com The version 0.13 will be the new default and compatibility options will be added to the 0.12 version. Signed-off-by: Amit Shah --- hw/pc.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index 6fbe98b..7c9a24e 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -1052,7 +1052,7 @@ void cmos_set_s3_resume(void) } static QEMUMachine pc_machine = { - .name = "pc-0.12", + .name = "pc-0.13", .alias = "pc", .desc = "Standard PC", .init = pc_init_pci, @@ -1060,6 +1060,13 @@ static QEMUMachine pc_machine = { .is_default = 1, }; +static QEMUMachine pc_machine_v0_12 = { + .name = "pc-0.12", + .desc = "Standard PC", + .init = pc_init_pci, + .max_cpus = 255, +}; + static QEMUMachine pc_machine_v0_11 = { .name = "pc-0.11", .desc = "Standard PC, qemu 0.11", -- 1.6.2.5