blob: 171b1e1c644f8ce671265cce8b18194fba365a79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# $FreeBSD$
.PATH: ${.CURDIR}/../../fs/nfsclient ${.CURDIR}/../../nfs
KMOD= nfscl
SRCS= vnode_if.h \
nfs_clrpcops.c \
nfs_clkrpc.c \
nfs_clstate.c \
nfs_clcomsubs.c \
nfs_clport.c \
nfs_clbio.c \
nfs_clnfsiod.c \
nfs_clnode.c \
nfs_clsubs.c \
nfs_clvfsops.c \
nfs_clvnops.c \
opt_bootp.h \
opt_inet.h \
opt_inet6.h \
opt_kgssapi.h \
opt_nfs.h \
opt_nfsroot.h \
opt_ufs.h
.if !defined(KERNBUILDDIR)
NFS_ROOT?= 1 # 0/1 - requires NFS_ROOT to be configured in kernel
.if ${NFS_ROOT} > 0
opt_nfsroot.h:
echo "#define NFS_ROOT 1" > ${.TARGET}
.endif
.else
OPT_NFS_ROOT!= cat ${KERNBUILDDIR}/opt_nfsroot.h
.if empty(OPT_NFS_ROOT)
NFS_ROOT= 0
.else
NFS_ROOT= 1
.endif
.endif
.if ${NFS_ROOT} > 0
SRCS+= nfs_diskless.c
.endif
.include <bsd.kmod.mk>
|