]> Git Repo - qemu.git/blobdiff - hw/versatilepb.c
Add to machine structure a flag to use SCSI drives instead of IDE: fixes SS-20
[qemu.git] / hw / versatilepb.c
index bfbc0312a096712dfd1c69a2734837fc37e29926..f9e9988fc6a71ef784ac2270c5dc10c43ca6316b 100644 (file)
@@ -316,13 +316,15 @@ static void vab_init(ram_addr_t ram_size, int vga_ram_size,
 }
 
 QEMUMachine versatilepb_machine = {
-    "versatilepb",
-    "ARM Versatile/PB (ARM926EJ-S)",
-    vpb_init,
+    .name = "versatilepb",
+    .desc = "ARM Versatile/PB (ARM926EJ-S)",
+    .init = vpb_init,
+    .use_scsi = 1,
 };
 
 QEMUMachine versatileab_machine = {
-    "versatileab",
-    "ARM Versatile/AB (ARM926EJ-S)",
-    vab_init,
+    .name = "versatileab",
+    .desc = "ARM Versatile/AB (ARM926EJ-S)",
+    .init = vab_init,
+    .use_scsi = 1,
 };
This page took 0.024917 seconds and 4 git commands to generate.