Add nfslockd and krpc modules.

This commit is contained in:
Doug Rabson 2008-03-27 11:55:03 +00:00
parent fa9d9930ca
commit 6b0d16d374
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=177663
2 changed files with 67 additions and 0 deletions

44
sys/modules/krpc/Makefile Normal file
View File

@ -0,0 +1,44 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../rpc ${.CURDIR}/../../xdr
KMOD= krpc
SRCS= auth_none.c \
auth_unix.c \
authunix_prot.c \
clnt_dg.c \
clnt_rc.c \
clnt_vc.c \
getnetconfig.c \
inet_ntop.c \
inet_pton.c \
rpc_callmsg.c \
rpc_generic.c \
rpc_prot.c \
rpcb_clnt.c \
rpcb_prot.c \
svc.c \
svc_auth.c \
svc_auth_unix.c \
svc_dg.c \
svc_generic.c \
svc_vc.c \
SRCS+= xdr.c \
xdr_array.c \
xdr_mbuf.c \
xdr_mem.c \
xdr_reference.c \
xdr_sizeof.c
SRCS+= opt_inet6.h
.if !defined(KERNBUILDDIR)
NFS_INET6?= 1 # 0/1 - requires INET6 to be configured in kernel
.if ${NFS_INET6} > 0
opt_inet6.h:
echo "#define INET6 1" > ${.TARGET}
.endif
.endif
.include <bsd.kmod.mk>

View File

@ -0,0 +1,23 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../nlm ${.CURDIR}/../../rpc
KMOD= nfslockd
SRCS= vnode_if.h \
nlm_prot_clnt.c \
nlm_prot_impl.c \
nlm_prot_server.c \
nlm_prot_svc.c \
nlm_prot_xdr.c \
sm_inter_xdr.c
SRCS+= opt_inet6.h
.if !defined(KERNBUILDDIR)
NFS_INET6?= 1 # 0/1 - requires INET6 to be configured in kernel
.if ${NFS_INET6} > 0
opt_inet6.h:
echo "#define INET6 1" > ${.TARGET}
.endif
.endif
.include <bsd.kmod.mk>