From fe1496da44b19de48bc39dcbbef393c2ae22bc56 Mon Sep 17 00:00:00 2001 From: scottl Date: Sat, 25 Mar 2006 06:14:32 +0000 Subject: Add a driver for the new LSI MegaRAID SAS controller family. The 'MFI' name is derived from the phrase 'MegaRAID Firmware Interface' used by LSI. This driver provides a block interface to logical disks on the card and a minimal management device. It is MPSAFE, INTR_FAST, and 64-bit capable. Thanks to Dell for providing hardware to test with and IronPort for sponsoring the work. Sponsored by: Dell, Ironport MFC After: 3 days --- sys/modules/mfi/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 sys/modules/mfi/Makefile (limited to 'sys/modules') diff --git a/sys/modules/mfi/Makefile b/sys/modules/mfi/Makefile new file mode 100644 index 0000000..6d0ddf4 --- /dev/null +++ b/sys/modules/mfi/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/mfi + +KMOD= mfi +SRCS= mfi.c mfi_pci.c mfi_disk.c +SRCS+= opt_mfi.h +SRCS+= device_if.h bus_if.h pci_if.h +CFLAGS+= -Wall -Werror + +# To enable debug output from the driver, uncomment these two lines. +#CFLAGS+= -DMFI_DEBUG=2 +#SRCS+= mfi_debug.c + +.include -- cgit v1.1