mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Allow diskless operation for all mips platforms.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5001 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
2ba27c7fa8
commit
eec2743ec2
4 changed files with 25 additions and 20 deletions
|
@ -273,15 +273,17 @@ void mips_pica61_init (ram_addr_t ram_size, int vga_ram_size,
|
|||
}
|
||||
|
||||
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,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue