mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
includes support for NFSv4. The subsystem can optionally be linked into the kernel using the two options: NFSCL - the client NFSD - the server It is also built as three modules: nfscl - the client nfsd - the server nfscommon - functions shared by the client and server Approved by: kib (mentor)
18 lines
290 B
Makefile
18 lines
290 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/nfsserver
|
|
KMOD= nfsd
|
|
SRCS= vnode_if.h \
|
|
nfs_nfsdserv.c \
|
|
nfs_nfsdcache.c \
|
|
nfs_nfsdkrpc.c \
|
|
nfs_nfsdsocket.c \
|
|
nfs_nfsdstate.c \
|
|
nfs_nfsdsubs.c \
|
|
nfs_nfsdport.c \
|
|
opt_ufs.h \
|
|
opt_nfs.h \
|
|
opt_inet6.h \
|
|
opt_kgssapi.h
|
|
|
|
.include <bsd.kmod.mk>
|