From eec2743ec20ac1fbf512bd5a88eea3ddc631997d Mon Sep 17 00:00:00 2001 From: ths Date: Wed, 13 Aug 2008 13:01:28 +0000 Subject: Allow diskless operation for all mips platforms. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5001 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/mips_mipssim.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'hw/mips_mipssim.c') 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, }; -- cgit 1.4.1