summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeiko Stuebner <heiko.stuebner@vrull.eu>2024-01-21 16:19:14 -0800
committerPalmer Dabbelt <palmer@rivosinc.com>2024-01-22 17:55:17 -0800
commitd563e9b37afb0e9b1b052819448951f542c05633 (patch)
treebc7a1cd8fd1eb5dd082709cd237f864dc7d2480d
parenta7b7a2e72df3d05a637c8aee79ba364eb57754f7 (diff)
downloadlinux-crypto-d563e9b37afb0e9b1b052819448951f542c05633.tar.gz
linux-crypto-d563e9b37afb0e9b1b052819448951f542c05633.zip
RISC-V: hook new crypto subdir into build-system
Create a crypto subdirectory for added accelerated cryptography routines and hook it into the riscv Kbuild and the main crypto Kconfig. Signed-off-by: Heiko Stuebner <heiko.stuebner@vrull.eu> Reviewed-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Jerry Shih <jerry.shih@sifive.com> Signed-off-by: Eric Biggers <ebiggers@google.com> Link: https://lore.kernel.org/r/20240122002024.27477-4-ebiggers@kernel.org Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
-rw-r--r--crypto/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 7d156c75..00e4aa16 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -1496,6 +1496,9 @@ endif
if PPC
source "arch/powerpc/crypto/Kconfig"
endif
+if RISCV
+source "arch/riscv/crypto/Kconfig"
+endif
if S390
source "arch/s390/crypto/Kconfig"
endif