aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit55a84e7d247b3a6bcbd898d10f5ccbdb8bb1dcb4 (patch)
treee8dd0fb742b2e613b8c096acd66c50e758428203
parentcrypto: make sure UML is properly disabled (diff)
downloadwireguard-monolithic-historical-55a84e7d247b3a6bcbd898d10f5ccbdb8bb1dcb4.tar.xz
wireguard-monolithic-historical-55a84e7d247b3a6bcbd898d10f5ccbdb8bb1dcb4.zip
kconfig: make NEON depend on CPU_V7
-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