oonf-olsrd2: add missing static plugin olsrv2_lan
authorPatrick Grimm <patrick@lunatiki.de>
Sun, 8 Jan 2023 17:14:36 +0000 (18:14 +0100)
committerNick Hainke <vincent@systemli.org>
Mon, 20 Feb 2023 21:56:35 +0000 (22:56 +0100)
Signed-off-by: Patrick Grimm <patrick@lunatiki.de>
oonf-olsrd2/Config.in
oonf-olsrd2/Makefile

index 1cc037aff3ebc9a2a1ea2d2c94857d62b8b28006..b0d7d7cb2767f7b12d089ccd44042e6788dcf9de 100644 (file)
                        The MPR plugin reduce the routing graph to limit the overhead of the OLSRv2 protocol
                default n
 
+       config OONF_OLSRV2_LAN
+               bool "New config option for Locally attached entries"
+               help
+                       Adds the 'lan' section to the config to configure LANs without setting multiple settings in a single key/value pair
+               default y
+
+       config OONF_OLSRV2_OLD_LAN
+               bool "Legacy option for Locally attached entries"
+               help
+                       Adds the olsr 'lan' config key in the olsrv2 section
+               default n
+
        endmenu
index 40190edb72547587bc53bb3bee150398b7413aa2..b733b80e01744827dec40fcae0c18be07917cb3a 100644 (file)
@@ -27,6 +27,8 @@ CMAKE_OPTIONAL_PLUGINS:= $(subst $(SPACE),;,$(strip \
         $(if $(filter y,$(CONFIG_OONF_GENERIC_REMOTECONTROL)),remotecontrol,) \
         $(if $(filter y,$(CONFIG_OONF_OLSRV2_MPR)),mpr,) \
         $(if $(filter y,$(CONFIG_OONF_GENERIC_HTTP)),http,) \
+        $(if $(filter y,$(CONFIG_OONF_OLSRV2_LAN)),olsrv2_lan,) \
+        $(if $(filter y,$(CONFIG_OONF_OLSRV2_OLD_LAN)),olsrv2_old_lan,) \
     ))
 
 BUILD_TYPE:= $(if $(filter y,$(CONFIG_DEBUG)),Debug,Release)