* [Qemu-devel] [5001] Allow diskless operation for all mips platforms.
@ 2008-08-13 13:01 Thiemo Seufer
0 siblings, 0 replies; only message in thread
From: Thiemo Seufer @ 2008-08-13 13:01 UTC (permalink / raw)
To: qemu-devel
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,
};
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-08-13 13:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-13 13:01 [Qemu-devel] [5001] Allow diskless operation for all mips platforms Thiemo Seufer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).