diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2009-09-28 13:34:20 -0700 |
---|---|---|
committer | Tyler Hicks <tyhicks@linux.vnet.ibm.com> | 2009-10-08 11:21:12 -0500 |
commit | 664fc5a4e7d0d7f3487e5c856b79f7dac79567fd (patch) | |
tree | 9413c8d73c86ce091ab16bce2acadc4397bffba0 /fs/ecryptfs/Kconfig | |
parent | 0eca52a92735f43462165efe00a7e394345fb38e (diff) | |
download | kernel_samsung_crespo-664fc5a4e7d0d7f3487e5c856b79f7dac79567fd.zip kernel_samsung_crespo-664fc5a4e7d0d7f3487e5c856b79f7dac79567fd.tar.gz kernel_samsung_crespo-664fc5a4e7d0d7f3487e5c856b79f7dac79567fd.tar.bz2 |
ecryptfs: depends on CRYPTO
ecryptfs uses crypto APIs so it should depend on CRYPTO.
Otherwise many build errors occur. [63 lines not pasted]
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: ecryptfs-devel@lists.launchpad.net
Signed-off-by: Tyler Hicks <tyhicks@linux.vnet.ibm.com>
Diffstat (limited to 'fs/ecryptfs/Kconfig')
-rw-r--r-- | fs/ecryptfs/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ecryptfs/Kconfig b/fs/ecryptfs/Kconfig index 8aadb99..89ebed3 100644 --- a/fs/ecryptfs/Kconfig +++ b/fs/ecryptfs/Kconfig @@ -1,6 +1,6 @@ config ECRYPT_FS tristate "eCrypt filesystem layer support (EXPERIMENTAL)" - depends on EXPERIMENTAL && KEYS && NET + depends on EXPERIMENTAL && KEYS && NET && CRYPTO select CRYPTO_ECB select CRYPTO_CBC help |