From: Henning Rogge Date: Thu, 5 May 2016 13:21:03 +0000 (+0100) Subject: Add remotecontrol plugin to selectable Olsrd2 plugins X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;h=6b17ce6f61c7bf171610f7b360b6e42f3341c3dc;hp=22040963a5241a382a604e3ec7150c06b7972395;p=lede-routing%2F.git Add remotecontrol plugin to selectable Olsrd2 plugins --- diff --git a/oonf-olsrd2/Config.in b/oonf-olsrd2/Config.in index f46831b..7cda518 100644 --- a/oonf-olsrd2/Config.in +++ b/oonf-olsrd2/Config.in @@ -26,4 +26,10 @@ The dlep_router plugin can receive linklayer metadata over the DLEP protocol. default n + config OONF_GENERIC_REMOTECONTROL + bool "remotecontrol plugin enabled" + help + The remotecontrol plugin allows you to control configuration and logging over the telnet plugin. Be careful not to open this functionality over the network without securing it. + default n + endmenu diff --git a/oonf-olsrd2/Makefile b/oonf-olsrd2/Makefile index 69cd97b..5a576d7 100644 --- a/oonf-olsrd2/Makefile +++ b/oonf-olsrd2/Makefile @@ -23,6 +23,7 @@ CMAKE_OPTIONAL_PLUGINS:= $(subst $(SPACE),;,$(strip \ $(if $(filter y,$(CONFIG_OONF_OLSRV2_LAN_IMPORT)),lan_import,) \ $(if $(filter y,$(CONFIG_OONF_OLSRV2_ROUTE_MODIFIER)),route_modifier,) \ $(if $(filter y,$(CONFIG_OONF_GENERIC_DLEP_ROUTER)),dlep_router,) \ + $(if $(filter y,$(CONFIG_OONF_GENERIC_REMOTECONTROL)),remotecontrol,) \ )) CMAKE_OPTIONS=-D OONF_NO_WERROR:Bool=true \