Source-Changes-HG archive

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

[src/trunk]: src/sys/modules split the coda module in a device one, and a vfs...



details:   https://anonhg.NetBSD.org/src/rev/bc156269b215
branches:  trunk
changeset: 779022:bc156269b215
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Apr 26 03:03:53 2012 +0000

description:
split the coda module in a device one, and a vfs one so that it works.

diffstat:

 sys/modules/Makefile       |   3 ++-
 sys/modules/coda/Makefile  |   5 ++---
 sys/modules/vcoda/Makefile |  11 +++++++++++
 3 files changed, 15 insertions(+), 4 deletions(-)

diffs (50 lines):

diff -r 21b8d31e85a2 -r bc156269b215 sys/modules/Makefile
--- a/sys/modules/Makefile      Thu Apr 26 03:00:21 2012 +0000
+++ b/sys/modules/Makefile      Thu Apr 26 03:03:53 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.105 2012/04/25 13:55:17 pgoyette Exp $
+#      $NetBSD: Makefile,v 1.106 2012/04/26 03:03:53 christos Exp $
 
 .include <bsd.own.mk>
 
@@ -76,6 +76,7 @@
 SUBDIR+=       umap
 SUBDIR+=       union
 SUBDIR+=       usbverbose
+SUBDIR+=       vcoda
 SUBDIR+=       v7fs
 SUBDIR+=       vnd
 SUBDIR+=       tprof
diff -r 21b8d31e85a2 -r bc156269b215 sys/modules/coda/Makefile
--- a/sys/modules/coda/Makefile Thu Apr 26 03:00:21 2012 +0000
+++ b/sys/modules/coda/Makefile Thu Apr 26 03:03:53 2012 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.1 2008/06/28 16:11:35 rumble Exp $
+#      $NetBSD: Makefile,v 1.2 2012/04/26 03:03:53 christos Exp $
 
 .include "../Makefile.inc"
 
@@ -6,7 +6,6 @@
 
 KMOD=  coda
 
-SRCS=  coda_namecache.c coda_psdev.c coda_subr.c coda_venus.c \
-       coda_vfsops.c coda_vnops.c
+SRCS=  coda_venus.c coda_vfsops.c coda_vnops.c
 
 .include <bsd.kmodule.mk>
diff -r 21b8d31e85a2 -r bc156269b215 sys/modules/vcoda/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/modules/vcoda/Makefile        Thu Apr 26 03:03:53 2012 +0000
@@ -0,0 +1,11 @@
+#      $NetBSD: Makefile,v 1.1 2012/04/26 03:03:53 christos Exp $
+
+.include "../Makefile.inc"
+
+.PATH: ${S}/coda
+
+KMOD=  vcoda
+
+SRCS=  coda_psdev.c coda_namecache.c coda_subr.c
+
+.include <bsd.kmodule.mk>



Home | Main Index | Thread Index | Old Index