From cab9acb79f15bb61027a5f66c3ab61888bbe2662 Mon Sep 17 00:00:00 2001 From: scottl Date: Sat, 27 Apr 2002 01:31:17 +0000 Subject: 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 --- sys/conf/NOTES | 1 + sys/conf/files | 1 + 2 files changed, 2 insertions(+) (limited to 'sys/conf') 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 -- cgit v1.1