aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/tests
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-08-03 01:09:50 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2016-08-03 13:46:36 +0200
commit6e8da46f28a4becbbd5f4299002dff69794adf10 (patch)
tree72930be276360cac6215c92962ff66e7d9a3fb7b /src/tests
parentselftest: move to subfolder (diff)
downloadwireguard-monolithic-historical-6e8da46f28a4becbbd5f4299002dff69794adf10.tar.xz
wireguard-monolithic-historical-6e8da46f28a4becbbd5f4299002dff69794adf10.zip
Kbuild: move module deps out of tests/
Diffstat (limited to '')
-rw-r--r--src/tests/moduledeps.mk17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/tests/moduledeps.mk b/src/tests/moduledeps.mk
deleted file mode 100644
index 4344d30..0000000
--- a/src/tests/moduledeps.mk
+++ /dev/null
@@ -1,17 +0,0 @@
-CONFIG_WIREGUARD := m
-ifeq ($(CONFIG_WIREGUARD_PARALLEL),)
-ifneq (,$(filter $(CONFIG_PADATA),y m))
-ccflags-y += -DCONFIG_WIREGUARD_PARALLEL=y
-endif
-endif
-
-ifneq ($(CONFIG_MODULES),)
-ifeq ($(CONFIG_NETFILTER_XT_MATCH_HASHLIMIT),)
-$(error "WireGuard requires CONFIG_NETFILTER_XT_MATCH_HASHLIMIT to be configured in your kernel. See https://www.wireguard.io/install/#kernel-requirements for more info")
-endif
-ifeq ($(CONFIG_PADATA),)
-ifneq ($(CONFIG_SMP),)
-$(warning "PEFORMANCE WARNING: WireGuard has enormous speed benefits when using CONFIG_PADATA on SMP systems. Please enable CONFIG_PADATA in your kernel configuration. See https://www.wireguard.io/install/#kernel-requirements for more info.")
-endif
-endif
-endif