diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-28 18:55:17 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-28 18:55:17 +0000 |
commit | c9b1ae2cfd25e3ad88c6ef61d18eaefd177a5e49 (patch) | |
tree | 37610a563a27d54d3cfa57955fa770dc0b8244d6 /hw/boards.h | |
parent | f87fc09b15bb73874b812ab82e96105ef6c7a2ba (diff) |
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
Diffstat (limited to 'hw/boards.h')
-rw-r--r-- | hw/boards.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/boards.h b/hw/boards.h index 6aa155db98..119c2f60cd 100644 --- a/hw/boards.h +++ b/hw/boards.h @@ -17,6 +17,7 @@ typedef struct QEMUMachine { #define RAMSIZE_FIXED (1 << 0) ram_addr_t ram_require; int nodisk_ok; + int use_scsi; struct QEMUMachine *next; } QEMUMachine; |