summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-09-11 15:02:32 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2018-09-11 15:02:32 -0600
commit39f3c1473c21723b1d658e6c2b6726eaf990c161 (patch)
tree428ba2dd86f9ec7d699f4e308a1c4445d732ede7
parent38bbbaf384383a0dd6b4e13488e795befc05a17d (diff)
kconfig: make NEON depend on CPU_V7
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--src/Kconfig6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Kconfig b/src/Kconfig
index 4dd2503..5c58aae 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -5,9 +5,9 @@ config WIREGUARD
select DST_CACHE
select CRYPTO_BLKCIPHER
select VFP
- select VFPv3
- select NEON
- select KERNEL_MODE_NEON
+ select VFPv3 if CPU_V7
+ select NEON if CPU_V7
+ select KERNEL_MODE_NEON if CPU_V7
default m
help
WireGuard is a secure, fast, and easy to use replacement for IPSec