svn commit: r233983 - in projects/nand/sys/modules: . nandfs

Grzegorz Bernacki gber at FreeBSD.org
Sat Apr 7 05:25:14 UTC 2012


Author: gber
Date: Sat Apr  7 05:25:13 2012
New Revision: 233983
URL: http://svn.freebsd.org/changeset/base/233983

Log:
  ndfs: Add module
  
  Obtained from: Semihalf
  Supported by:  FreeBSD Foundation, Juniper Networks

Added:
  projects/nand/sys/modules/nandfs/
  projects/nand/sys/modules/nandfs/Makefile
Modified:
  projects/nand/sys/modules/Makefile

Modified: projects/nand/sys/modules/Makefile
==============================================================================
--- projects/nand/sys/modules/Makefile	Sat Apr  7 05:20:14 2012	(r233982)
+++ projects/nand/sys/modules/Makefile	Sat Apr  7 05:25:13 2012	(r233983)
@@ -217,6 +217,7 @@ SUBDIR=	${_3dfx} \
 	${_mwlfw} \
 	mxge \
 	my \
+	${_nandfs} \
 	${_nandsim} \
 	${_ncp} \
 	${_ncv} \

Added: projects/nand/sys/modules/nandfs/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/nand/sys/modules/nandfs/Makefile	Sat Apr  7 05:25:13 2012	(r233983)
@@ -0,0 +1,12 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../fs/nandfs
+
+KMOD=	nandfs
+SRCS=	vnode_if.h \
+	bmap.c nandfs_bmap.c nandfs_dir.c nandfs_subr.c nandfs_vfsops.c \
+	nandfs_vnops.c nandfs_alloc.c nandfs_cpfile.c nandfs_dat.c \
+	nandfs_ifile.c nandfs_segment.c nandfs_sufile.c nandfs_buffer.c \
+	nandfs_cleaner.c
+
+.include <bsd.kmod.mk>


More information about the svn-src-projects mailing list