home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Partition drives into single large partitions
- ;
- ; This is allowed if you are using DOS 4.0 or greater.
- ; Instead of breaking the drive up into 32Meg chunks,
- ; the entire drive will be allocated as one chunk.
- ;
- large_drives = 1
-
- ;
- ; Allow multi_sector reads and writes.
- ;
- ; This means that a read request of less then CHUNK_MAX
- ; sectors will be done in one request to the drive rather
- ; then multiple single sector requests.
- ;
- multi_sector = 1
-
- ;
- ; Use the extended SCSI commands for reads and writes.
- ;
- ; This means that we can access drives larger then 1Gb
- ; and read/write more then 256 sectors per command.
- ;
- ; The disadvantage here is that not all devices support
- ; the extended command set.
- ;
- extended_io = 0
-
- ;
- ; Use parity on the SCSI bus
- ;
- scsi_parity = 0
-
- ;
- ; Reserve SCSI Address 7 for card
- ; This also means use Arbitration for getting control of the BUS
- ;
- reserve_addr = 0
-
- ;
- ; Dump Sense information to the screen
- ;
- dump_sense = 1
-
- ;
- ; Include the code to kludge the RAW ioctl call after an open
- ;
- use_kludge = 1
-
- ;
- ; Only Inquire for enough data to determine device type.
- ; This allows for older devices that violate the SCSI
- ; spec in that they don't return the normal inquire structure.
- ;
- mini_inquire = 0
-
- ;
- ; Include code to display the SCSI bus phase on the screen
- ;
- monitor = 0
-
- ;
- ; Now select wether we want 8088 compatability or 80286+ code
- ;
- oldcode = 0
-