On Thu, Dec 13, 2007 at 09:03:46PM -0500, Erez Zadok wrote: > I'm getting undefined symbols while building MMOTM kernel > stamp-2007-12-13-15-37: > > MODPOST 32 modules > ERROR: "aead_geniv_exit" [crypto/seqiv.ko] undefined! > ERROR: "aead_geniv_alloc" [crypto/seqiv.ko] undefined! > ERROR: "aead_geniv_init" [crypto/seqiv.ko] undefined! > ERROR: "aead_geniv_free" [crypto/seqiv.ko] undefined! > make[1]: *** [__modpost] Error 1
Sorry. I've added the following patch to fix this. Thanks, -- Visit Openswan at http://www.openswan.org/ Email: Herbert Xu ~{PmV>HI~} <[EMAIL PROTECTED]> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- diff --git a/crypto/Kconfig b/crypto/Kconfig index 304ecc7..237dfa2 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -34,6 +34,7 @@ config CRYPTO_BLKCIPHER config CRYPTO_SEQIV tristate "Sequence Number IV Generator" + select CRYPTO_AEAD select CRYPTO_BLKCIPHER help This IV generator generates an IV based on a sequence number by -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/