Add nvme(4) and nvd(4) Makefiles to the tree.

Noticed by:	pluknet
Pointy-hat to:  jimharris
This commit is contained in:
Jim Harris 2012-09-17 19:58:02 +00:00
parent eb85d44f06
commit 978b27047d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240619
2 changed files with 29 additions and 0 deletions

8
sys/modules/nvd/Makefile Normal file
View File

@ -0,0 +1,8 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/nvd
KMOD= nvd
SRCS= nvd.c opt_geom.h device_if.h bus_if.h
.include <bsd.kmod.mk>

21
sys/modules/nvme/Makefile Normal file
View File

@ -0,0 +1,21 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../dev/nvme
KMOD = nvme
SRCS = nvme.c \
nvme_ctrlr.c \
nvme_ctrlr_cmd.c \
nvme_ns.c \
nvme_ns_cmd.c \
nvme_qpair.c \
nvme_sysctl.c \
nvme_test.c \
nvme_uio.c \
\
bus_if.h \
device_if.h \
pci_if.h
.include <bsd.kmod.mk>