From patchwork Thu Aug 9 13:31:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [07/23] musicpal: Suppress unused default drives Date: Thu, 09 Aug 2012 03:31:08 -0000 From: Markus Armbruster X-Patchwork-Id: 176081 Message-Id: <1344519084-21847-8-git-send-email-armbru@redhat.com> To: qemu-devel@nongnu.org Cc: Jan Kiszka Cc: Jan Kiszka Suppress default floppy, CD-ROM and SD card drives. Signed-off-by: Markus Armbruster --- hw/musicpal.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/musicpal.c b/hw/musicpal.c index ad725b5..05930f5 100644 --- a/hw/musicpal.c +++ b/hw/musicpal.c @@ -1658,6 +1658,9 @@ static QEMUMachine musicpal_machine = { .name = "musicpal", .desc = "Marvell 88w8618 / MusicPal (ARM926EJ-S)", .init = musicpal_init, + .no_floppy = 1, + .no_cdrom = 1, + .no_sdcard = 1, }; static void musicpal_machine_init(void)