b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame] | 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 |
| 2 | From: "Jason A. Donenfeld" <Jason@zx2c4.com> |
| 3 | Date: Sun, 15 Dec 2019 22:08:01 +0100 |
| 4 | Subject: [PATCH] wireguard: Kconfig: select parent dependency for crypto |
| 5 | |
| 6 | commit d7c68a38bb4f9b7c1a2e4a772872c752ee5c44a6 upstream. |
| 7 | |
| 8 | This fixes the crypto selection submenu depenencies. Otherwise, we'd |
| 9 | wind up issuing warnings in which certain dependencies we also select |
| 10 | couldn't be satisfied. This condition was triggered by the addition of |
| 11 | the test suite autobuilder in the previous commit. |
| 12 | |
| 13 | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> |
| 14 | Signed-off-by: David S. Miller <davem@davemloft.net> |
| 15 | Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> |
| 16 | --- |
| 17 | drivers/net/Kconfig | 2 ++ |
| 18 | 1 file changed, 2 insertions(+) |
| 19 | |
| 20 | --- a/drivers/net/Kconfig |
| 21 | +++ b/drivers/net/Kconfig |
| 22 | @@ -85,6 +85,8 @@ config WIREGUARD |
| 23 | select CRYPTO_POLY1305_X86_64 if X86 && 64BIT |
| 24 | select CRYPTO_BLAKE2S_X86 if X86 && 64BIT |
| 25 | select CRYPTO_CURVE25519_X86 if X86 && 64BIT |
| 26 | + select ARM_CRYPTO if ARM |
| 27 | + select ARM64_CRYPTO if ARM64 |
| 28 | select CRYPTO_CHACHA20_NEON if (ARM || ARM64) && KERNEL_MODE_NEON |
| 29 | select CRYPTO_POLY1305_NEON if ARM64 && KERNEL_MODE_NEON |
| 30 | select CRYPTO_POLY1305_ARM if ARM |