qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [5001] Allow diskless operation for all mips platforms.


From: Thiemo Seufer
Subject: [Qemu-devel] [5001] Allow diskless operation for all mips platforms.
Date: Wed, 13 Aug 2008 13:01:28 +0000

Revision: 5001
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5001
Author:   ths
Date:     2008-08-13 13:01:28 +0000 (Wed, 13 Aug 2008)

Log Message:
-----------
Allow diskless operation for all mips platforms.

Modified Paths:
--------------
    trunk/hw/mips_jazz.c
    trunk/hw/mips_malta.c
    trunk/hw/mips_mipssim.c
    trunk/hw/mips_r4k.c

Modified: trunk/hw/mips_jazz.c
===================================================================
--- trunk/hw/mips_jazz.c        2008-08-13 12:54:23 UTC (rev 5000)
+++ trunk/hw/mips_jazz.c        2008-08-13 13:01:28 UTC (rev 5001)
@@ -273,15 +273,17 @@
 }
 
 QEMUMachine mips_magnum_machine = {
-    "magnum",
-    "MIPS Magnum",
-    mips_magnum_init,
-    MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
+    .name = "magnum",
+    .desc = "MIPS Magnum",
+    .init = mips_magnum_init,
+    .ram_require = MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
+    .nodisk_ok = 1,
 };
 
 QEMUMachine mips_pica61_machine = {
-    "pica61",
-    "Acer Pica 61",
-    mips_pica61_init,
-    MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
+    .name = "pica61",
+    .desc = "Acer Pica 61",
+    .init = mips_pica61_init,
+    .ram_require = MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
+    .nodisk_ok = 1,
 };

Modified: trunk/hw/mips_malta.c
===================================================================
--- trunk/hw/mips_malta.c       2008-08-13 12:54:23 UTC (rev 5000)
+++ trunk/hw/mips_malta.c       2008-08-13 13:01:28 UTC (rev 5001)
@@ -946,8 +946,9 @@
 }
 
 QEMUMachine mips_malta_machine = {
-    "malta",
-    "MIPS Malta Core LV",
-    mips_malta_init,
-    VGA_RAM_SIZE + BIOS_SIZE,
+    .name = "malta",
+    .desc = "MIPS Malta Core LV",
+    .init = mips_malta_init,
+    .ram_require = VGA_RAM_SIZE + BIOS_SIZE,
+    .nodisk_ok = 1,
 };

Modified: trunk/hw/mips_mipssim.c
===================================================================
--- trunk/hw/mips_mipssim.c     2008-08-13 12:54:23 UTC (rev 5000)
+++ trunk/hw/mips_mipssim.c     2008-08-13 13:01:28 UTC (rev 5001)
@@ -191,8 +191,9 @@
 }
 
 QEMUMachine mips_mipssim_machine = {
-    "mipssim",
-    "MIPS MIPSsim platform",
-    mips_mipssim_init,
-    BIOS_SIZE + VGA_RAM_SIZE /* unused */,
+    .name = "mipssim",
+    .desc = "MIPS MIPSsim platform",
+    .init = mips_mipssim_init,
+    .ram_require = BIOS_SIZE + VGA_RAM_SIZE /* unused */,
+    .nodisk_ok = 1,
 };

Modified: trunk/hw/mips_r4k.c
===================================================================
--- trunk/hw/mips_r4k.c 2008-08-13 12:54:23 UTC (rev 5000)
+++ trunk/hw/mips_r4k.c 2008-08-13 13:01:28 UTC (rev 5001)
@@ -283,8 +283,9 @@
 }
 
 QEMUMachine mips_machine = {
-    "mips",
-    "mips r4k platform",
-    mips_r4k_init,
-    VGA_RAM_SIZE + BIOS_SIZE,
+    .name = "mips",
+    .desc = "mips r4k platform",
+    .init = mips_r4k_init,
+    .ram_require = VGA_RAM_SIZE + BIOS_SIZE,
+    .nodisk_ok = 1,
 };






reply via email to

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