qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 05/23] omap_sx1: Suppress unused default drives


From: Markus Armbruster
Subject: [Qemu-devel] [PATCH 05/23] omap_sx1: Suppress unused default drives
Date: Thu, 9 Aug 2012 15:31:06 +0200

Cc: Peter Maydell <address@hidden>

Suppress default floppy and CD-ROM drives for machines sx1, sx1-v1.

Signed-off-by: Markus Armbruster <address@hidden>
---
 hw/omap_sx1.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/hw/omap_sx1.c b/hw/omap_sx1.c
index abca341..3ca716e 100644
--- a/hw/omap_sx1.c
+++ b/hw/omap_sx1.c
@@ -231,12 +231,16 @@ static QEMUMachine sx1_machine_v2 = {
     .name = "sx1",
     .desc = "Siemens SX1 (OMAP310) V2",
     .init = sx1_init_v2,
+    .no_floppy = 1,
+    .no_cdrom = 1,
 };
 
 static QEMUMachine sx1_machine_v1 = {
     .name = "sx1-v1",
     .desc = "Siemens SX1 (OMAP310) V1",
     .init = sx1_init_v1,
+    .no_floppy = 1,
+    .no_cdrom = 1,
 };
 
 static void sx1_machine_init(void)
-- 
1.7.11.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]