From patchwork Thu Aug 9 13:31:07 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 176085 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 A417C2C00E5 for ; Thu, 9 Aug 2012 23:33:31 +1000 (EST) Received: from localhost ([::1]:49337 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSrh-0004m4-OQ for incoming@patchwork.ozlabs.org; Thu, 09 Aug 2012 09:33:29 -0400 Received: from eggs.gnu.org ([208.118.235.92]:40039) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSpr-0001bB-ER for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SzSpm-0001jl-1r for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:35 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:37591) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSpl-0001jF-Rg 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 443DDA3E06; Thu, 9 Aug 2012 15:31:26 +0200 (CEST) Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id 3BF5F20061; Thu, 9 Aug 2012 15:31:25 +0200 (CEST) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Thu, 9 Aug 2012 15:31:07 +0200 Message-Id: <1344519084-21847-7-git-send-email-armbru@redhat.com> X-Mailer: git-send-email 1.7.11.2 In-Reply-To: <1344519084-21847-1-git-send-email-armbru@redhat.com> References: <1344519084-21847-1-git-send-email-armbru@redhat.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 78.46.104.156 Cc: Peter Chubb Subject: [Qemu-devel] [PATCH 06/23] kzm: Suppress unused default drives 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 Cc: Peter Chubb Suppress default floppy, CD-ROM and SD card drives. Signed-off-by: Markus Armbruster --- hw/kzm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/kzm.c b/hw/kzm.c index 6a5e9df..e7e4ef0 100644 --- a/hw/kzm.c +++ b/hw/kzm.c @@ -144,6 +144,9 @@ static QEMUMachine kzm_machine = { .name = "kzm", .desc = "ARM KZM Emulation Baseboard (ARM1136)", .init = kzm_init, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, }; static void kzm_machine_init(void)