From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:35799) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk2WR-00067O-N2 for qemu-devel@nongnu.org; Sun, 08 Jan 2012 18:51:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rk2WQ-0002sE-PA for qemu-devel@nongnu.org; Sun, 08 Jan 2012 18:51:31 -0500 Received: from cantor2.suse.de ([195.135.220.15]:44830 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk2WQ-0002sA-Jm for qemu-devel@nongnu.org; Sun, 08 Jan 2012 18:51:30 -0500 From: Alexander Graf Date: Mon, 9 Jan 2012 00:52:25 +0100 Message-Id: <1326066745-8170-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH] PC: pc-0.15 is not the default List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "qemu-devel@nongnu.org Developers" Cc: Avi Kivity , kvm list During creation of the pc-0.15 machine type something must have gone wrong and the is_default field was still set, even though our default machine is 1.0. Remove that field. Signed-off-by: Alexander Graf diff --git a/hw/pc_piix.c b/hw/pc_piix.c index b70431f..00f525e 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -328,7 +328,6 @@ static QEMUMachine pc_machine_v0_15 = { .desc = "Standard PC", .init = pc_init_pci, .max_cpus = 255, - .is_default = 1, }; static QEMUMachine pc_machine_v0_14 = {