From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49421) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bB4gV-0008GH-GE for qemu-devel@nongnu.org; Thu, 09 Jun 2016 14:28:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bB4gU-0002Jh-CK for qemu-devel@nongnu.org; Thu, 09 Jun 2016 14:28:03 -0400 Received: from mail-vk0-x236.google.com ([2607:f8b0:400c:c05::236]:34826) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bB4gU-0002JY-87 for qemu-devel@nongnu.org; Thu, 09 Jun 2016 14:28:02 -0400 Received: by mail-vk0-x236.google.com with SMTP id d127so66862941vkh.2 for ; Thu, 09 Jun 2016 11:28:02 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1465410291-2971-3-git-send-email-drjones@redhat.com> References: <1465410291-2971-1-git-send-email-drjones@redhat.com> <1465410291-2971-3-git-send-email-drjones@redhat.com> From: Peter Maydell Date: Thu, 9 Jun 2016 19:27:42 +0100 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH 2/5] hw/arm/virt: set is_default List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Andrew Jones Cc: QEMU Developers , qemu-arm , Wei Huang On 8 June 2016 at 19:24, Andrew Jones wrote: > Make the latest machine type (currently only one) the > default. > > Signed-off-by: Andrew Jones > --- > hw/arm/virt.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/hw/arm/virt.c b/hw/arm/virt.c > index a0d35d0826590..09afbafde025d 100644 > --- a/hw/arm/virt.c > +++ b/hw/arm/virt.c > @@ -1432,6 +1432,7 @@ static void virt_2_6_class_init(ObjectClass *oc, void *data) > > mc->desc = "QEMU 2.6 ARM Virtual Machine"; > mc->alias = "virt"; > + mc->is_default = 1; > } > > static const TypeInfo machvirt_2_6_info = { We don't want a default machine for 32-bit ARM, and I'm still unconvinced we want a default machine for 64-bit ARM. At least, this should be a separate patch/discussion from adding the virt-2.7 machine type. thanks -- PMM