From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:36777) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RcfF9-0005ZF-3o for qemu-devel@nongnu.org; Mon, 19 Dec 2011 10:35:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RcfF3-0001mi-Cq for qemu-devel@nongnu.org; Mon, 19 Dec 2011 10:35:11 -0500 Message-ID: <4EEF59A4.4020305@codemonkey.ws> Date: Mon, 19 Dec 2011 09:35:00 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1324305949-20960-1-git-send-email-aliguori@us.ibm.com> In-Reply-To: <1324305949-20960-1-git-send-email-aliguori@us.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/2] pc: add pc-0.15 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, qemu-stable@nongnu.org On 12/19/2011 08:45 AM, Anthony Liguori wrote: > Signed-off-by: Anthony Liguori I should add that both of these are stable candidates. The second one in particular. Regards, Anthony Liguori > --- > 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 166c2fc..265ccb2 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);