From patchwork Tue Mar 5 00:19:44 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 224860 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 847842C0334 for ; Tue, 5 Mar 2013 11:20:20 +1100 (EST) Received: from localhost ([::1]:53985 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCfcA-0001DN-KB for incoming@patchwork.ozlabs.org; Mon, 04 Mar 2013 19:20:18 -0500 Received: from eggs.gnu.org ([208.118.235.92]:43406) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCfbx-0001CR-GJ for qemu-devel@nongnu.org; Mon, 04 Mar 2013 19:20:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCfbw-0000nC-40 for qemu-devel@nongnu.org; Mon, 04 Mar 2013 19:20:05 -0500 Received: from hall.aurel32.net ([2001:470:1f15:c4f::1]:38522) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCfbv-0000hc-TW for qemu-devel@nongnu.org; Mon, 04 Mar 2013 19:20:04 -0500 Received: from [2001:470:d4ed:0:ea11:32ff:fea1:831a] (helo=ohm.aurel32.net) by hall.aurel32.net with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1UCfbt-0001Jq-TL; Tue, 05 Mar 2013 01:20:02 +0100 Received: from aurel32 by ohm.aurel32.net with local (Exim 4.80) (envelope-from ) id 1UCfbl-0005ob-KB; Tue, 05 Mar 2013 01:19:53 +0100 From: Aurelien Jarno To: qemu-devel@nongnu.org Date: Tue, 5 Mar 2013 01:19:44 +0100 Message-Id: <1362442784-22324-1-git-send-email-aurelien@aurel32.net> X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:470:1f15:c4f::1 Cc: Peter Maydell , Aurelien Jarno Subject: [Qemu-devel] [PATCH] hw/vexpress: set default block type to SD X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The versatile express has no SCSI card, but instead boot on an SD card. Change block_default_type accordingly. Signed-off-by: Aurelien Jarno --- hw/vexpress.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/vexpress.c b/hw/vexpress.c index 741b044..969aae6 100644 --- a/hw/vexpress.c +++ b/hw/vexpress.c @@ -477,7 +477,7 @@ static QEMUMachine vexpress_a9_machine = { .name = "vexpress-a9", .desc = "ARM Versatile Express for Cortex-A9", .init = vexpress_a9_init, - .block_default_type = IF_SCSI, + .block_default_type = IF_SD, .max_cpus = 4, DEFAULT_MACHINE_OPTIONS, }; @@ -486,7 +486,7 @@ static QEMUMachine vexpress_a15_machine = { .name = "vexpress-a15", .desc = "ARM Versatile Express for Cortex-A15", .init = vexpress_a15_init, - .block_default_type = IF_SCSI, + .block_default_type = IF_SD, .max_cpus = 4, DEFAULT_MACHINE_OPTIONS, };