Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/fs support nullfs and umapfs



details:   https://anonhg.NetBSD.org/src/rev/5280c7d79bc6
branches:  trunk
changeset: 753473:5280c7d79bc6
user:      pooka <pooka%NetBSD.org@localhost>
date:      Tue Mar 30 00:59:07 2010 +0000

description:
support nullfs and umapfs

diffstat:

 sys/rump/fs/Makefile.rumpfs             |   7 ++++---
 sys/rump/fs/lib/libnullfs/Makefile      |  11 +++++++++++
 sys/rump/fs/lib/libnullfs/shlib_version |   4 ++++
 sys/rump/fs/lib/libumapfs/Makefile      |  11 +++++++++++
 sys/rump/fs/lib/libumapfs/shlib_version |   4 ++++
 5 files changed, 34 insertions(+), 3 deletions(-)

diffs (62 lines):

diff -r fdd45a5312f5 -r 5280c7d79bc6 sys/rump/fs/Makefile.rumpfs
--- a/sys/rump/fs/Makefile.rumpfs       Mon Mar 29 18:49:02 2010 +0000
+++ b/sys/rump/fs/Makefile.rumpfs       Tue Mar 30 00:59:07 2010 +0000
@@ -1,8 +1,9 @@
-#      $NetBSD: Makefile.rumpfs,v 1.20 2010/03/29 18:12:23 pooka Exp $
+#      $NetBSD: Makefile.rumpfs,v 1.21 2010/03/30 00:59:07 pooka Exp $
 #
 
-RUMPFSLIST=    cd9660 efs ext2fs fdesc ffs fifovfs hfs layervfs lfs mfs msdos
-RUMPFSLIST+=   nfs nilfs ntfs smbfs syspuffs sysvbfs tmpfs udf union
+RUMPFSLIST=    cd9660 efs ext2fs fdesc ffs fifovfs hfs layervfs lfs    \
+               mfs msdos nfs nilfs ntfs nullfs smbfs syspuffs sysvbfs  \
+               tmpfs udf umapfs union
 
 .for var in ${RUMPFSLIST}
 RUMPFSLIBS+=lib${var}
diff -r fdd45a5312f5 -r 5280c7d79bc6 sys/rump/fs/lib/libnullfs/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/fs/lib/libnullfs/Makefile        Tue Mar 30 00:59:07 2010 +0000
@@ -0,0 +1,11 @@
+#      $NetBSD: Makefile,v 1.1 2010/03/30 00:59:07 pooka Exp $
+#
+
+.PATH:  ${.CURDIR}/../../../../miscfs/nullfs
+
+LIB=   rumpfs_nullfs
+
+SRCS=  null_vfsops.c null_vnops.c
+
+.include <bsd.lib.mk>
+.include <bsd.klinks.mk>
diff -r fdd45a5312f5 -r 5280c7d79bc6 sys/rump/fs/lib/libnullfs/shlib_version
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/fs/lib/libnullfs/shlib_version   Tue Mar 30 00:59:07 2010 +0000
@@ -0,0 +1,4 @@
+#      $NetBSD: shlib_version,v 1.1 2010/03/30 00:59:07 pooka Exp $
+#
+major=0
+minor=0
diff -r fdd45a5312f5 -r 5280c7d79bc6 sys/rump/fs/lib/libumapfs/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/fs/lib/libumapfs/Makefile        Tue Mar 30 00:59:07 2010 +0000
@@ -0,0 +1,11 @@
+#      $NetBSD: Makefile,v 1.1 2010/03/30 00:59:07 pooka Exp $
+#
+
+.PATH:  ${.CURDIR}/../../../../miscfs/umapfs
+
+LIB=   rumpfs_umapfs
+
+SRCS=  umap_subr.c umap_vfsops.c umap_vnops.c
+
+.include <bsd.lib.mk>
+.include <bsd.klinks.mk>
diff -r fdd45a5312f5 -r 5280c7d79bc6 sys/rump/fs/lib/libumapfs/shlib_version
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/rump/fs/lib/libumapfs/shlib_version   Tue Mar 30 00:59:07 2010 +0000
@@ -0,0 +1,4 @@
+#      $NetBSD: shlib_version,v 1.1 2010/03/30 00:59:07 pooka Exp $
+#
+major=0
+minor=0



Home | Main Index | Thread Index | Old Index