Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/modules Add module glue for CHFS.



details:   https://anonhg.NetBSD.org/src/rev/078fdcc58684
branches:  trunk
changeset: 771535:078fdcc58684
user:      ahoka <ahoka%NetBSD.org@localhost>
date:      Thu Nov 24 15:52:24 2011 +0000

description:
Add module glue for CHFS.

diffstat:

 sys/modules/Makefile      |   3 ++-
 sys/modules/chfs/Makefile |  17 +++++++++++++++++
 2 files changed, 19 insertions(+), 1 deletions(-)

diffs (38 lines):

diff -r 374afd01dfcf -r 078fdcc58684 sys/modules/Makefile
--- a/sys/modules/Makefile      Thu Nov 24 15:51:30 2011 +0000
+++ b/sys/modules/Makefile      Thu Nov 24 15:52:24 2011 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.98 2011/11/15 16:50:46 riz Exp $
+#      $NetBSD: Makefile,v 1.99 2011/11/24 15:52:24 ahoka Exp $
 
 .include <bsd.own.mk>
 
@@ -15,6 +15,7 @@
 SUBDIR+=       compat
 SUBDIR+=       compat_ossaudio
 SUBDIR+=       coredump
+SUBDIR+=       chfs
 SUBDIR+=       efs
 SUBDIR+=       ext2fs
 SUBDIR+=       exec_script
diff -r 374afd01dfcf -r 078fdcc58684 sys/modules/chfs/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/modules/chfs/Makefile Thu Nov 24 15:52:24 2011 +0000
@@ -0,0 +1,17 @@
+#      $NetBSD: Makefile,v 1.1 2011/11/24 15:52:24 ahoka Exp $
+
+.include "../Makefile.inc"
+
+.PATH: ${S}/ufs/chfs
+
+CPPFLAGS+=     -DDIAGNOSTIC -DDEBUG -DLOCKDEBUG
+CFLAGS+=       -g
+
+KMOD=  chfs
+SRCS=  ebh.c debug.c chfs_wbuf.c chfs_vnode_cache.c chfs_ihash.c
+SRCS+=  chfs_gc.c
+SRCS+=  chfs_vnode.c chfs_erase.c chfs_write.c chfs_readinode.c
+SRCS+=  chfs_build.c chfs_scan.c chfs_nodeops.c chfs_malloc.c
+SRCS+= chfs_pool.c chfs_subr.c chfs_vfsops.c chfs_vnops.c
+
+.include <bsd.kmodule.mk>



Home | Main Index | Thread Index | Old Index