freebsd-dev/sys/modules/mfi/Makefile
Scott Long 2e21a3ef7e 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
2006-03-25 06:14:32 +00:00

16 lines
304 B
Makefile

# $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 <bsd.kmod.mk>