From mboxrd@z Thu Jan 1 00:00:00 1970 From: Phillip Hellewell Subject: [PATCH 1/12: eCryptfs] Makefile and Kconfig Date: Wed, 2 Nov 2005 20:42:07 -0700 Message-ID: <20051103034207.GA3005@sshock.rn.byu.edu> References: <20051103033220.GD2772@sshock.rn.byu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: phillip@hellewell.homeip.net, mike@halcrow.us, mhalcrow@us.ibm.com, mcthomps@us.ibm.com, yoder1@us.ibm.com Return-path: To: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Content-Disposition: inline In-Reply-To: <20051103033220.GD2772@sshock.rn.byu.edu> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org These patches modify fs/Makefile and fs/Kconfig to provide build support for eCryptfs. Signed off by: Phillip Hellewell Signed off by: Michael Halcrow Signed off by: Michael Thompson Signed off by: Kent Yoder Kconfig | 10 ++++++++++ Makefile | 1 + 2 files changed, 11 insertions(+) --- linux-2.6.14-rc5-mm1/fs/Makefile 2005-11-01 10:19:25.000000000 -0600 +++ linux-2.6.14-rc5-mm1-ecryptfs//fs/Makefile 2005-11-01 10:36:50.000000000 -0600 @@ -67,6 +67,7 @@ obj-$(CONFIG_ISO9660_FS) += isofs/ obj-$(CONFIG_DEVFS_FS) += devfs/ obj-$(CONFIG_HFSPLUS_FS) += hfsplus/ # Before hfs to find wrapped HFS+ +obj-$(CONFIG_ECRYPTFS) += ecryptfs/ obj-$(CONFIG_HFS_FS) += hfs/ obj-$(CONFIG_VXFS_FS) += freevxfs/ obj-$(CONFIG_NFS_FS) += nfs/ --- linux-2.6.14-rc5-mm1/fs/Kconfig 2005-11-01 10:19:25.000000000 -0600 +++ linux-2.6.14-rc5-mm1-ecryptfs//fs/Kconfig 2005-11-01 10:36:50.000000000 -0600 @@ -989,6 +989,16 @@ If unsure, say N. +config ECRYPTFS + tristate "eCrypt filesystem layer support (EXPERIMENTAL)" + depends on EXPERIMENTAL && KEYS && CRYPTO + help + Encrypted filesystem that operates on the VFS layer. See + Documentation/ecryptfs.txt to learn more about eCryptfs. + + To compile this file system support as a module, choose M here: the + module will be called ecryptfs. + config HFS_FS tristate "Apple Macintosh file system support (EXPERIMENTAL)" depends on EXPERIMENTAL