Message ID | 20201120110433.31090-3-ardb@kernel.org |
---|---|
State | Accepted |
Commit | 00ea27f11c4f96ffc9ebc147b5ea045babb02ce3 |
Headers | show |
Series | crypto: tcrypt enhancements | expand |
diff --git a/crypto/Kconfig b/crypto/Kconfig index 094ef56ab7b4..9014a0ec6a0e 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -201,7 +201,7 @@ config CRYPTO_AUTHENC config CRYPTO_TEST tristate "Testing module" - depends on m + depends on m || EXPERT select CRYPTO_MANAGER help Quick & dirty crypto test module.
When working on crypto algorithms, being able to run tcrypt quickly without booting an entire Linux installation can be very useful. For instance, QEMU/kvm can be used to boot a kernel from the command line, and having tcrypt.ko builtin would allow tcrypt to be executed to run benchmarks, or to run tests for algorithms that need to be instantiated from templates, without the need to make it past the point where the rootfs is mounted. So let's relax the requirement that tcrypt can only be built as a module when CONFIG_EXPERT is enabled. Signed-off-by: Ard Biesheuvel <ardb@kernel.org> --- crypto/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)