From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40013) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSpp-0001b2-2N for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SzSpm-0001lG-P0 for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:32 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:37600) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSpm-0001kD-H9 for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:30 -0400 From: Markus Armbruster Date: Thu, 9 Aug 2012 15:31:22 +0200 Message-Id: <1344519084-21847-22-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 21/23] sh4: Suppress unused default drives List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Magnus Damm Suppress default floppy, CD-ROM and SD card drives for machines r2d, shix. Signed-off-by: Markus Armbruster --- hw/r2d.c | 3 +++ hw/shix.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/hw/r2d.c b/hw/r2d.c index 0f16e81..fc7f681 100644 --- a/hw/r2d.c +++ b/hw/r2d.c @@ -344,6 +344,9 @@ static QEMUMachine r2d_machine = { .name = "r2d", .desc = "r2d-plus board", .init = r2d_init, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, }; static void r2d_machine_init(void) diff --git a/hw/shix.c b/hw/shix.c index dd9ce17..550e5df 100644 --- a/hw/shix.c +++ b/hw/shix.c @@ -93,6 +93,9 @@ static QEMUMachine shix_machine = { .name = "shix", .desc = "shix card", .init = shix_init, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, .is_default = 1, }; -- 1.7.11.2