aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/nfsd
diff options
context:
space:
mode:
authorRick Macklem <rmacklem@FreeBSD.org>2009-05-28 19:45:11 +0000
committerRick Macklem <rmacklem@FreeBSD.org>2009-05-28 19:45:11 +0000
commitbcbdacdd37acf433e633d31082b460f58d85a032 (patch)
tree704f92226f47e3058637c34aa0509331020fe431 /sys/modules/nfsd
parent3933ec4d15fb0a7cb7105d58222bc4f4affbb6f3 (diff)
downloadsrc-bcbdacdd37acf433e633d31082b460f58d85a032.tar.gz
src-bcbdacdd37acf433e633d31082b460f58d85a032.zip
Add the kernel build glue for the experimental NFS subsystem that
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)
Notes
Notes: svn path=/head/; revision=192991
Diffstat (limited to 'sys/modules/nfsd')
-rw-r--r--sys/modules/nfsd/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/sys/modules/nfsd/Makefile b/sys/modules/nfsd/Makefile
new file mode 100644
index 000000000000..08d302a2ab5b
--- /dev/null
+++ b/sys/modules/nfsd/Makefile
@@ -0,0 +1,18 @@
+# $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>