9f1776230d
- New support for 40LD firmware found in Series 475 and 471 adapters. - Better support for 8LD firmware adapters - Ioctl passthrough interface for userland utilities. - Improved error handling and queueing. - Several bugfixes (including the 'still open' shutdown bug and closing some small race conditions). - Zone-style command allocator, reducing memory wasted under heavy load conditions. - CAM interface (disabled and not fully working) for SCSI passthrough access to non-disk devices Thanks to AMI for supplying a pile of new adapters and various other help in making this happen.
18 lines
402 B
Makefile
18 lines
402 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/amr
|
|
KMOD = amr
|
|
SRCS = amr.c amr_pci.c amr_disk.c device_if.h bus_if.h pci_if.h
|
|
|
|
# SCSI passthrough support for non-disk devices
|
|
#CFLAGS += -DAMR_SCSI_PASSTHROUGH
|
|
#SRCS += amr_cam.c opt_cam.h opt_scsi.h
|
|
|
|
# Enable a questionable optimisation for newer adapters
|
|
#CFLAGS += -DAMR_QUARTZ_GOFASTER
|
|
|
|
# Debugging
|
|
#CFLAGS += -DAMR_DEBUG=3
|
|
|
|
.include <bsd.kmod.mk>
|