Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LogExport] Adding options to include LogExport plugin #351

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions package/wpe/wpeframework-plugins/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,13 @@ config BR2_PACKAGE_WPEFRAMEWORK_DICTIONARY
help
Dictionary Plugin.

config BR2_PACKAGE_WPEFRAMEWORK_SYSLOGEXPORT
select BR2_PACKAGE_WPEFRAMEWORK_PLUGINS
bool "SyslogExport"
default n
help
SyslogExport Plugin.

config BR2_PACKAGE_WPEFRAMEWORK_FRONTPANEL
select BR2_PACKAGE_WPEFRAMEWORK_PLUGINS
bool "FrontPanel"
Expand Down
4 changes: 4 additions & 0 deletions package/wpe/wpeframework-plugins/wpeframework-plugins.mk
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,10 @@ endif
WPEFRAMEWORK_PLUGINS_CONF_OPTS += -DPLUGIN_IOCONNECTOR_PINS='$(call qstrip,$(BR2_PACKAGE_WPEFRAMEWORK_IOCONNECTOR_PINS))'
endif

ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_SYSLOGEXPORT),y)
WPEFRAMEWORK_PLUGINS_CONF_OPTS += -DPLUGIN_SYSLOGEXPORT=ON
endif

ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_INPUTSWITCH),y)
WPEFRAMEWORK_PLUGINS_CONF_OPTS += -DPLUGIN_INPUTSWITCH=ON
endif
Expand Down