Add remotecontrol plugin to selectable Olsrd2 plugins

This commit is contained in:
Henning Rogge 2016-05-05 14:21:03 +01:00
parent 3c1fc329dc
commit 052df65d5c
2 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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 \