e2ea6942ab
'show adapter' now shows PCIe width and speed, IOC Speed, and the temperature of the controller. A new command, 'set ncq', is added. It enables or disables SATA NCQ in the NVRAM of the card. Its current setting is added to 'show adapter' as well. PR: 254841 MFC after: 2 weeks Relnotes: perhaps
23 lines
422 B
Makefile
23 lines
422 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= mpsutil
|
|
SRCS= mps_cmd.c mps_debug.c mps_flash.c mps_set.c mps_show.c mps_slot.c mpsutil.c
|
|
MAN= mpsutil.8
|
|
|
|
WARNS?= 3
|
|
|
|
#LIBADD= cam util
|
|
LINKS= ${BINDIR}/mpsutil ${BINDIR}/mprutil
|
|
MLINKS= mpsutil.8 mprutil.8
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys -I. -DUSE_MPT_IOCTLS
|
|
# Avoid dirdep dependency on libutil
|
|
CFLAGS+= -I${SRCTOP}/lib/libutil
|
|
|
|
# Here be dragons
|
|
.ifdef DEBUG
|
|
CFLAGS+= -DDEBUG
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|