From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40082) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSpu-0001bu-LI for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SzSpm-0001kT-AX for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:38 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:37594) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSpm-0001jN-1I for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:31:30 -0400 From: Markus Armbruster Date: Thu, 9 Aug 2012 15:31:15 +0200 Message-Id: <1344519084-21847-15-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 14/23] m68k: Suppress unused default drives List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paul@pond.sub.org, "Brook --- hw/an5206.c | 3 +++ hw/dummy_m68k.c | 3 +++ hw/mcf5208.c | 3 +++ 3 files changed, 9 insertions(+) diff --git a/hw/an5206.c b/hw/an5206.c index 25407c0..80158581 100644 --- a/hw/an5206.c +++ b/hw/an5206.c @@ -86,6 +86,9 @@ static QEMUMachine an5206_machine = { .name = "an5206", .desc = "Arnewsh 5206", .init = an5206_init, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, }; static void an5206_machine_init(void) diff --git a/hw/dummy_m68k.c b/hw/dummy_m68k.c index 7cc7a99..8bb4e7d 100644 --- a/hw/dummy_m68k.c +++ b/hw/dummy_m68k.c @@ -73,6 +73,9 @@ static QEMUMachine dummy_m68k_machine = { .name = "dummy", .desc = "Dummy board", .init = dummy_m68k_init, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, }; static void dummy_m68k_machine_init(void) diff --git a/hw/mcf5208.c b/hw/mcf5208.c index ee25b1b..c87a323 100644 --- a/hw/mcf5208.c +++ b/hw/mcf5208.c @@ -291,6 +291,9 @@ static QEMUMachine mcf5208evb_machine = { .name = "mcf5208evb", .desc = "MCF5206EVB", .init = mcf5208evb_init, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, .is_default = 1, }; -- 1.7.11.2