From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40059) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSps-0001bF-OO for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SzSpl-0001ix-FA for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:36 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:37552) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSpl-0001iU-8v for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:29 -0400 Received: from blackfin.pond.sub.org (p5B329920.dip.t-dialin.net [91.50.153.32]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 81CAFA3DFF for ; Thu, 9 Aug 2012 15:31:25 +0200 (CEST) From: Markus Armbruster Date: Thu, 9 Aug 2012 15:31:02 +0200 Message-Id: <1344519084-21847-2-git-send-email-armbru@redhat.com> In-Reply-To: <1344519084-21847-1-git-send-email-armbru@redhat.com> References: <1344519084-21847-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH 01/23] alpha_dp264: Suppress unused default drives List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Suppress default floppy and SD-card drives. Signed-off-by: Markus Armbruster --- hw/alpha_dp264.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/alpha_dp264.c b/hw/alpha_dp264.c index 9eb939f..3dd6252 100644 --- a/hw/alpha_dp264.c +++ b/hw/alpha_dp264.c @@ -169,6 +169,8 @@ static QEMUMachine clipper_machine = { .desc = "Alpha DP264/CLIPPER", .init = clipper_init, .max_cpus = 4, + .no_floppy = 1, + .no_sdcard = 1, .is_default = 1, }; -- 1.7.11.2