aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1994-09-22 22:12:59 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1994-09-22 22:12:59 +0000
commit42477d75d038de2ef2d8cbb77644f63f56d2076f (patch)
tree62352666e7f734d4bec34aa573c5f764390a3deb /sys/modules
parente21fa31a8edd19d1cdc670965d3430a269da3266 (diff)
downloadsrc-42477d75d038de2ef2d8cbb77644f63f56d2076f.tar.gz
src-42477d75d038de2ef2d8cbb77644f63f56d2076f.zip
Create NFS LKM.
Notes
Notes: svn path=/head/; revision=2998
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile4
-rw-r--r--sys/modules/nfs/Makefile11
-rw-r--r--sys/modules/nfsclient/Makefile11
-rw-r--r--sys/modules/nfsserver/Makefile11
4 files changed, 35 insertions, 2 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index e71bd1765c7a..155135b15b8d 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -1,6 +1,6 @@
-# $Id: Makefile,v 1.1 1994/09/16 20:24:26 wollman Exp $
+# $Id: Makefile,v 1.2 1994/09/21 23:26:55 wollman Exp $
-SUBDIR= cd9660 fdesc ip_mroute_mod kernfs mfs msdos nullfs portal \
+SUBDIR= cd9660 fdesc ip_mroute_mod kernfs mfs msdos nfs nullfs portal \
procfs umapfs union
.include <bsd.subdir.mk>
diff --git a/sys/modules/nfs/Makefile b/sys/modules/nfs/Makefile
new file mode 100644
index 000000000000..e8e89e8367d9
--- /dev/null
+++ b/sys/modules/nfs/Makefile
@@ -0,0 +1,11 @@
+# $Id: Makefile,v 1.1 1994/09/21 23:27:07 wollman Exp $
+
+.PATH: ${.CURDIR}/../../sys/nfs
+KMOD= nfs_mod
+SRCS= nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
+ nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c nfs_vnops.c
+NOMAN=
+VFS_LKM=
+CFLAGS+= -DNFS -DINET
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/nfsclient/Makefile b/sys/modules/nfsclient/Makefile
new file mode 100644
index 000000000000..e8e89e8367d9
--- /dev/null
+++ b/sys/modules/nfsclient/Makefile
@@ -0,0 +1,11 @@
+# $Id: Makefile,v 1.1 1994/09/21 23:27:07 wollman Exp $
+
+.PATH: ${.CURDIR}/../../sys/nfs
+KMOD= nfs_mod
+SRCS= nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
+ nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c nfs_vnops.c
+NOMAN=
+VFS_LKM=
+CFLAGS+= -DNFS -DINET
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/nfsserver/Makefile b/sys/modules/nfsserver/Makefile
new file mode 100644
index 000000000000..e8e89e8367d9
--- /dev/null
+++ b/sys/modules/nfsserver/Makefile
@@ -0,0 +1,11 @@
+# $Id: Makefile,v 1.1 1994/09/21 23:27:07 wollman Exp $
+
+.PATH: ${.CURDIR}/../../sys/nfs
+KMOD= nfs_mod
+SRCS= nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
+ nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c nfs_vnops.c
+NOMAN=
+VFS_LKM=
+CFLAGS+= -DNFS -DINET
+
+.include <bsd.kmod.mk>