diff options
author | wollman <wollman@FreeBSD.org> | 1994-09-22 22:12:59 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-09-22 22:12:59 +0000 |
commit | d4b42cfe457790ba8db25f68e68f7c056ddc69b5 (patch) | |
tree | 62352666e7f734d4bec34aa573c5f764390a3deb /lkm | |
parent | d8d853f4faa49b727dd68f09116d9978dea80f30 (diff) | |
download | FreeBSD-src-d4b42cfe457790ba8db25f68e68f7c056ddc69b5.zip FreeBSD-src-d4b42cfe457790ba8db25f68e68f7c056ddc69b5.tar.gz |
Create NFS LKM.
Diffstat (limited to 'lkm')
-rw-r--r-- | lkm/Makefile | 4 | ||||
-rw-r--r-- | lkm/nfs/Makefile | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/lkm/Makefile b/lkm/Makefile index e71bd17..155135b 100644 --- a/lkm/Makefile +++ b/lkm/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/lkm/nfs/Makefile b/lkm/nfs/Makefile new file mode 100644 index 0000000..e8e89e8 --- /dev/null +++ b/lkm/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> |