mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-18 05:28:36 -07:00
Add to machine structure a flag to use SCSI drives instead of IDE: fixes SS-20
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5339 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f87fc09b15
commit
c9b1ae2cfd
5 changed files with 27 additions and 16 deletions
|
|
@ -197,8 +197,9 @@ static void realview_init(ram_addr_t ram_size, int vga_ram_size,
|
|||
}
|
||||
|
||||
QEMUMachine realview_machine = {
|
||||
"realview",
|
||||
"ARM RealView Emulation Baseboard (ARM926EJ-S)",
|
||||
realview_init,
|
||||
0x1000
|
||||
.name = "realview",
|
||||
.desc = "ARM RealView Emulation Baseboard (ARM926EJ-S)",
|
||||
.init = realview_init,
|
||||
.ram_require = 0x1000,
|
||||
.use_scsi = 1,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue