diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-13 13:01:28 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-08-13 13:01:28 +0000 |
commit | eec2743ec20ac1fbf512bd5a88eea3ddc631997d (patch) | |
tree | a1da93d86b10776b28ef358479cce13e82bf174d /hw/mips_mipssim.c | |
parent | 2ba27c7fa8c29ebf242bdcfab621abd3a00ac399 (diff) |
Allow diskless operation for all mips platforms.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5001 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/mips_mipssim.c')
-rw-r--r-- | hw/mips_mipssim.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/hw/mips_mipssim.c b/hw/mips_mipssim.c index d04c660b41..01f4c1b6b2 100644 --- a/hw/mips_mipssim.c +++ b/hw/mips_mipssim.c @@ -191,8 +191,9 @@ mips_mipssim_init (ram_addr_t ram_size, int vga_ram_size, } 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, }; |