diff options
author | Justin M. Forbes <jforbes@fedoraproject.org> | 2022-06-02 22:23:23 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-06-06 08:43:37 +0200 |
commit | e16cc79b0f916069de223bdb567fa0bc2ccd18a5 (patch) | |
tree | 7ec0daf3ecf27e1adb42ede37b968983b263b403 /lib/Kconfig | |
parent | c504167adc3248095a905fa0700a9693897cb5ed (diff) | |
download | linux-stable-e16cc79b0f916069de223bdb567fa0bc2ccd18a5.tar.gz linux-stable-e16cc79b0f916069de223bdb567fa0bc2ccd18a5.tar.bz2 linux-stable-e16cc79b0f916069de223bdb567fa0bc2ccd18a5.zip |
lib/crypto: add prompts back to crypto libraries
commit e56e18985596617ae426ed5997fb2e737cffb58b upstream.
Commit 6048fdcc5f269 ("lib/crypto: blake2s: include as built-in") took
away a number of prompt texts from other crypto libraries. This makes
values flip from built-in to module when oldconfig runs, and causes
problems when these crypto libs need to be built in for thingslike
BIG_KEYS.
Fixes: 6048fdcc5f269 ("lib/crypto: blake2s: include as built-in")
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: linux-crypto@vger.kernel.org
Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
[Jason: - moved menu into submenu of lib/ instead of root menu
- fixed chacha sub-dependencies for CONFIG_CRYPTO]
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index fa4b10322efc..e052f843afed 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -121,6 +121,8 @@ config INDIRECT_IOMEM_FALLBACK mmio accesses when the IO memory address is not a registered emulated region. +source "lib/crypto/Kconfig" + config CRC_CCITT tristate "CRC-CCITT functions" help |