freebsd-dev/sbin/nvmecontrol/Makefile
Jim Harris 38441bd9a9 Add message when nvd disks are attached and detached.
As part of this commit, add an nvme_strvis() function which borrows
heavily from cam_strvis().  This will allow stripping of
leading/trailing whitespace and also handle unprintable characters
in model/serial numbers.  This function goes into a new nvme_util.c
file which is used by both the driver and nvmecontrol.

Sponsored by:	Intel
Reviewed by:	carl
MFC after:	3 days
2013-07-19 21:40:57 +00:00

11 lines
208 B
Makefile

# $FreeBSD$
PROG= nvmecontrol
SRCS= nvmecontrol.c devlist.c firmware.c identify.c logpage.c \
perftest.c reset.c nvme_util.c
MAN= nvmecontrol.8
.PATH: ${.CURDIR}/../../sys/dev/nvme
.include <bsd.prog.mk>