From patchwork Thu Aug 9 13:31:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Armbruster X-Patchwork-Id: 176128 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 B87FA2C00E4 for ; Fri, 10 Aug 2012 00:30:48 +1000 (EST) Received: from localhost ([::1]:46807 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSqh-0003TP-Ri for incoming@patchwork.ozlabs.org; Thu, 09 Aug 2012 09:32:27 -0400 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 Received: from blackfin.pond.sub.org (p5B329920.dip.t-dialin.net [91.50.153.32]) by oxygen.pond.sub.org (Postfix) with ESMTPA id 8B513A3E0C; Thu, 9 Aug 2012 15:31:26 +0200 (CEST) Received: by blackfin.pond.sub.org (Postfix, from userid 1000) id DD7B420068; Thu, 9 Aug 2012 15:31:25 +0200 (CEST) From: Markus Armbruster To: qemu-devel@nongnu.org Date: Thu, 9 Aug 2012 15:31:15 +0200 Message-Id: <1344519084-21847-15-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: Paul@pond.sub.org, "Brook 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: Paul 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, };