From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37631) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSwN-0008QA-9x for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:38:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SzSwH-0003dG-NN for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:38:18 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:37768) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SzSwH-0003cA-Fr for qemu-devel@nongnu.org; Thu, 09 Aug 2012 09:38:13 -0400 From: Markus Armbruster Date: Thu, 9 Aug 2012 15:31:24 +0200 Message-Id: <1344519084-21847-24-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 23/23] xtensa: Suppress unused default drives List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Max Filippov Cc: Max Filippov Suppress default floppy, CD-ROM and SD card drives for machines lx60, lx200, sim. Signed-off-by: Markus Armbruster --- hw/xtensa_lx60.c | 6 ++++++ hw/xtensa_sim.c | 3 +++ 2 files changed, 9 insertions(+) diff --git a/hw/xtensa_lx60.c b/hw/xtensa_lx60.c index c4f616f..f89e255 100644 --- a/hw/xtensa_lx60.c +++ b/hw/xtensa_lx60.c @@ -303,6 +303,9 @@ static QEMUMachine xtensa_lx60_machine = { .desc = "lx60 EVB (dc232b)", .init = xtensa_lx60_init, .max_cpus = 4, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, }; static QEMUMachine xtensa_lx200_machine = { @@ -310,6 +313,9 @@ static QEMUMachine xtensa_lx200_machine = { .desc = "lx200 EVB (dc232b)", .init = xtensa_lx200_init, .max_cpus = 4, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, }; static void xtensa_lx_machines_init(void) diff --git a/hw/xtensa_sim.c b/hw/xtensa_sim.c index 1ce07fb..f1246d6 100644 --- a/hw/xtensa_sim.c +++ b/hw/xtensa_sim.c @@ -113,6 +113,9 @@ static QEMUMachine xtensa_sim_machine = { .desc = "sim machine (dc232b)", .init = xtensa_sim_init, .max_cpus = 4, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, }; static void xtensa_sim_machine_init(void) -- 1.7.11.2