diff options
author | scottl <scottl@FreeBSD.org> | 2002-04-27 01:31:17 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2002-04-27 01:31:17 +0000 |
commit | cab9acb79f15bb61027a5f66c3ab61888bbe2662 (patch) | |
tree | bdea749e92ba01846ba22df8336f58cd8bcc51f7 /sys/conf | |
parent | 968e9b32d8f8dc040d229b3e42dfdab24deb5905 (diff) | |
download | FreeBSD-src-cab9acb79f15bb61027a5f66c3ab61888bbe2662.zip FreeBSD-src-cab9acb79f15bb61027a5f66c3ab61888bbe2662.tar.gz |
Add a CAM interface to the aac driver. This is useful in case you should
ever connect a SCSI Cdrom/Tape/Jukebox/Scanner/Printer/kitty-litter-scooper
to your high-end RAID controller. The interface to the arrays is still
via the block interface; this merely provides a way to circumvent the
RAID functionality and access the SCSI buses directly. Note that for
somewhat obvious reasons, hard drives are not exposed to the da driver
through this interface, though you can still talk to them via the pass
driver. Be the first on your block to low-level format unsuspecting
drives that are part of an array!
To enable this, add the 'aacp' device to your kernel config.
MFC after: 3 days
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/NOTES | 1 | ||||
-rw-r--r-- | sys/conf/files | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index a84076c..b10bd54 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -1288,6 +1288,7 @@ device mly # support). # device aac +device aacp # SCSI Passthrough interface (optional) # # Compaq Smart RAID, Mylex DAC960 and AMI MegaRAID controllers. Only diff --git a/sys/conf/files b/sys/conf/files index c069d46..030b9af 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -196,6 +196,7 @@ dev/aac/aac.c optional aac dev/aac/aac_debug.c optional aac dev/aac/aac_disk.c optional aac dev/aac/aac_pci.c optional aac pci +dev/aac/aac_cam.c optional aacp aac dev/acpica/acpi.c optional acpica dev/acpica/acpica_support.c optional acpica dev/acpica/acpi_acad.c optional acpica nowerror |