summaryrefslogtreecommitdiffstats
path: root/sys/modules/nfs4client
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2003-11-15 01:02:00 +0000
committeralfred <alfred@FreeBSD.org>2003-11-15 01:02:00 +0000
commit46a88bfba8f9e89a3bdd4d48e7f21bfb9de99f20 (patch)
tree0c3d57298cecc3722e8044fbe608ee6f1e2df917 /sys/modules/nfs4client
parent302841f20d7342d296d35c06fa78f05b331de8e1 (diff)
downloadFreeBSD-src-46a88bfba8f9e89a3bdd4d48e7f21bfb9de99f20.zip
FreeBSD-src-46a88bfba8f9e89a3bdd4d48e7f21bfb9de99f20.tar.gz
nfs4 client module.
Not hooked up to the build yet.
Diffstat (limited to 'sys/modules/nfs4client')
-rw-r--r--sys/modules/nfs4client/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/sys/modules/nfs4client/Makefile b/sys/modules/nfs4client/Makefile
new file mode 100644
index 0000000..723f571
--- /dev/null
+++ b/sys/modules/nfs4client/Makefile
@@ -0,0 +1,36 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../nfsclient ${.CURDIR}/../../nfs4client \
+ ${.CURDIR}/../../nfs ${.CURDIR}/../../rpc
+KMOD= nfs4client
+SRCS= vnode_if.h \
+ nfs_bio.c nfs_lock.c nfs_node.c nfs_nfsiod.c \
+ nfs_common.c \
+ opt_inet.h opt_nfs.h opt_bootp.h opt_nfsroot.h \
+ nfs4_dev.c nfs4_idmap.c nfs4_socket.c nfs4_subs.c \
+ nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn_subs.c nfs4_vnops.c
+SRCS+= opt_inet6.h
+
+NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel
+NFS_INET6?= 1 # 0/1 - requires INET6 to be configured in kernel
+
+# USE THE RPCCLNT:
+CFLAGS+= -DRPCCLNT_DEBUG
+SRCS+= rpcclnt.c
+
+# USE THE NEW IDMAPPER
+CFLAGS+= -DUSE_NEW_IDMAPPER
+
+opt_inet.h:
+ touch ${.TARGET}
+.if ${NFS_INET} > 0
+ echo "#define INET 1" > ${.TARGET}
+.endif
+
+.if ${NFS_INET6} > 0
+opt_inet6.h:
+ echo "#define INET6 1" > ${.TARGET}
+.endif
+
+.include <bsd.kmod.mk>
+
OpenPOWER on IntegriCloud