aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorBorislav Petkov <bbpetkov@yahoo.de>2007-12-14 03:43:32 -0500
committerHerbert Xu <herbert@gondor.apana.org.au>2008-01-10 16:16:39 -0500
commit5e553110f27ff77591ec7305c6216ad6949f7a95 (patch)
tree8864adf96c71f51ffd09f1cce59c5eb9a54483e6 /crypto/Kconfig
parentf17922bc75d6261dd6e0e2d687ff43b96e91e04a (diff)
[CRYPTO] authenc: Select HASH in Kconfig
i get here: ---- LD vmlinux SYSMAP System.map SYSMAP .tmp_System.map Building modules, stage 2. MODPOST 226 modules ERROR: "crypto_hash_type" [crypto/authenc.ko] undefined! make[1]: *** [__modpost] Error 1 make: *** [modules] Error 2 --- which fails because crypto_hash_type is declared in crypto/hash.c. You might wanna fix it like so: Signed-off-by: Borislav Petkov <bbpetkov@yahoo.de> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r--crypto/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 4fd14e4efed2..1eb4bcdb344f 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -532,6 +532,7 @@ config CRYPTO_AUTHENC
532 tristate "Authenc support" 532 tristate "Authenc support"
533 select CRYPTO_AEAD 533 select CRYPTO_AEAD
534 select CRYPTO_MANAGER 534 select CRYPTO_MANAGER
535 select CRYPTO_HASH
535 help 536 help
536 Authenc: Combined mode wrapper for IPsec. 537 Authenc: Combined mode wrapper for IPsec.
537 This is required for IPSec. 538 This is required for IPSec.