Unionfs: Kconfig and Makefile
authorJosef "Jeff" Sipek <jsipek@cs.sunysb.edu>
Sun, 28 Jan 2007 20:10:20 +0000 (15:10 -0500)
committerErez_Zadok <ezk@cs.sunysb.edu>
Tue, 3 Jul 2007 22:45:20 +0000 (18:45 -0400)
This patch contains the changes to fs Kconfig file, Makefiles, and Maintainers
file for Unionfs.

Signed-off-by: Josef "Jeff" Sipek <jsipek@cs.sunysb.edu>
Signed-off-by: David Quigley <dquigley@fsl.cs.sunysb.edu>
Signed-off-by: Erez Zadok <ezk@cs.sunysb.edu>
MAINTAINERS
fs/Kconfig
fs/Makefile
fs/unionfs/Makefile [new file with mode: 0644]

index e182992ff79955834ea9ab7871afd4003fdcdc22..93a846a9a3a1c9ff722b8d63507261c7c99d91a0 100644 (file)
@@ -3042,6 +3042,13 @@ L:       linux-kernel@vger.kernel.org
 W:     http://www.kernel.dk
 S:     Maintained
 
+UNIONFS
+P:     Josef "Jeff" Sipek
+M:     jsipek@cs.sunysb.edu
+L:     unionfs@filesystems.org
+W:     http://www.unionfs.org
+S:     Maintained
+
 USB ACM DRIVER
 P:     Oliver Neukum
 M:     oliver@neukum.name
index 7b1511d50b05a29df371a547a1d4db5fc756d2b7..c3dc00fdab5ef28f218869304247727a8a03d65d 100644 (file)
@@ -1557,6 +1557,16 @@ config UFS_DEBUG
          Y here.  This will result in _many_ additional debugging messages to be
          written to the system log.
 
+config UNION_FS
+       tristate "Union file system (EXPERIMENTAL)"
+       depends on EXPERIMENTAL
+       help
+         Unionfs is a stackable unification file system, which appears to
+         merge the contents of several directories (branches), while keeping
+         their physical content separate.
+
+         See <http://www.unionfs.org> for details
+
 endmenu
 
 menu "Network File Systems"
index 9a5ce9323bfd0c65ffed56f597294b29db75efa9..6722fe7db221b753977e51942aa6f2c25ba23085 100644 (file)
@@ -114,3 +114,4 @@ obj-$(CONFIG_HPPFS)         += hppfs/
 obj-$(CONFIG_DEBUG_FS)         += debugfs/
 obj-$(CONFIG_OCFS2_FS)         += ocfs2/
 obj-$(CONFIG_GFS2_FS)           += gfs2/
+obj-$(CONFIG_UNION_FS)         += unionfs/
diff --git a/fs/unionfs/Makefile b/fs/unionfs/Makefile
new file mode 100644 (file)
index 0000000..25dd78f
--- /dev/null
@@ -0,0 +1,5 @@
+obj-$(CONFIG_UNION_FS) += unionfs.o
+
+unionfs-y := subr.o dentry.o file.o inode.o main.o super.o \
+       stale_inode.o branchman.o rdstate.o copyup.o dirhelper.o \
+       rename.o unlink.o lookup.o commonfops.o dirfops.o sioq.o