summaryrefslogtreecommitdiffstats
path: root/sys/modules/nfsclient
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2003-11-16 00:00:06 +0000
committerimp <imp@FreeBSD.org>2003-11-16 00:00:06 +0000
commit25599e1a7f0e57aa1176d1bc6a74d2031db071ed (patch)
treee3ba094b87b0348edc664e8c6777042f49c743bc /sys/modules/nfsclient
parent145dea31472f63f46742779660e8580e03f4ab87 (diff)
downloadFreeBSD-src-25599e1a7f0e57aa1176d1bc6a74d2031db071ed.zip
FreeBSD-src-25599e1a7f0e57aa1176d1bc6a74d2031db071ed.tar.gz
Quick hack to make the nfsclient.ko loadable again. This brings in
the nfsv4 files. It is intended to be a short-term bridge while alfred deals with the problem in a better way (eg, don't hesitate to back this out when the real fix comes along). I've not heard back from alfred in a few hours and other people are hitting this problem. Approved by: markm, rwatson, grog, murray
Diffstat (limited to 'sys/modules/nfsclient')
-rw-r--r--sys/modules/nfsclient/Makefile13
1 files changed, 12 insertions, 1 deletions
diff --git a/sys/modules/nfsclient/Makefile b/sys/modules/nfsclient/Makefile
index e558e95..11b83eb 100644
--- a/sys/modules/nfsclient/Makefile
+++ b/sys/modules/nfsclient/Makefile
@@ -1,16 +1,27 @@
# $FreeBSD$
-.PATH: ${.CURDIR}/../../nfsclient ${.CURDIR}/../../nfs
+.PATH: ${.CURDIR}/../../nfsclient ${.CURDIR}/../../nfs4client \
+ ${.CURDIR}/../../nfs ${.CURDIR}/../../rpc
+
KMOD= nfsclient
SRCS= vnode_if.h \
nfs_bio.c nfs_lock.c nfs_node.c nfs_socket.c nfs_subs.c nfs_nfsiod.c \
nfs_vfsops.c nfs_vnops.c nfs_common.c \
opt_inet.h opt_nfs.h opt_bootp.h opt_nfsroot.h
+SRCS+= 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
OpenPOWER on IntegriCloud