kernel: 5.4: import wireguard backport
[openwrt/openwrt.git] / target / linux / generic / backport-5.4 / 080-wireguard-0075-wireguard-Kconfig-select-parent-dependency-for-crypt.patch
1 From 87e4891e91a381de049a6c70690a295f44ae1f13 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 075/124] wireguard: Kconfig: select parent dependency for
5 crypto
6
7 commit d7c68a38bb4f9b7c1a2e4a772872c752ee5c44a6 upstream.
8
9 This fixes the crypto selection submenu depenencies. Otherwise, we'd
10 wind up issuing warnings in which certain dependencies we also select
11 couldn't be satisfied. This condition was triggered by the addition of
12 the test suite autobuilder in the previous commit.
13
14 Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
15 Signed-off-by: David S. Miller <davem@davemloft.net>
16 Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
17 ---
18 drivers/net/Kconfig | 2 ++
19 1 file changed, 2 insertions(+)
20
21 --- a/drivers/net/Kconfig
22 +++ b/drivers/net/Kconfig
23 @@ -85,6 +85,8 @@ config WIREGUARD
24 select CRYPTO_POLY1305_X86_64 if X86 && 64BIT
25 select CRYPTO_BLAKE2S_X86 if X86 && 64BIT
26 select CRYPTO_CURVE25519_X86 if X86 && 64BIT
27 + select ARM_CRYPTO if ARM
28 + select ARM64_CRYPTO if ARM64
29 select CRYPTO_CHACHA20_NEON if (ARM || ARM64) && KERNEL_MODE_NEON
30 select CRYPTO_POLY1305_NEON if ARM64 && KERNEL_MODE_NEON
31 select CRYPTO_POLY1305_ARM if ARM