diff options
author | Linus Lüssing <linus.luessing@c0d3.blue> | 2016-09-20 09:59:17 -0400 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2016-10-17 10:28:48 -0400 |
commit | 0566df307bc882bfca4128521f01a48f4579d27d (patch) | |
tree | 87044829d1ef5f0ec44062a421aba5e940c85d4f | |
parent | 843314c9775cf4e4dc171866b3376f52c85fbffb (diff) |
batman-adv: Allow selecting BATMAN V if CFG80211 is not built
With the new stub for cfg80211_get_station(), we can now build the
BATMAN V protocol even with a kernel that was built without any
wireless support.
Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
-rw-r--r-- | net/batman-adv/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/batman-adv/Kconfig b/net/batman-adv/Kconfig index f20742cbae6d..b73b96a2854b 100644 --- a/net/batman-adv/Kconfig +++ b/net/batman-adv/Kconfig | |||
@@ -17,7 +17,7 @@ config BATMAN_ADV | |||
17 | 17 | ||
18 | config BATMAN_ADV_BATMAN_V | 18 | config BATMAN_ADV_BATMAN_V |
19 | bool "B.A.T.M.A.N. V protocol (experimental)" | 19 | bool "B.A.T.M.A.N. V protocol (experimental)" |
20 | depends on BATMAN_ADV && CFG80211=y || (CFG80211=m && BATMAN_ADV=m) | 20 | depends on BATMAN_ADV && !(CFG80211=m && BATMAN_ADV=y) |
21 | default n | 21 | default n |
22 | help | 22 | help |
23 | This option enables the B.A.T.M.A.N. V protocol, the successor | 23 | This option enables the B.A.T.M.A.N. V protocol, the successor |