kconfig: remove redundant EVENT_LOGGER option

KERNEL_EVENT_LOGGER selects EVENT_LOGGER which is then used to
enabling building. Skip EVENT_LOGGER and use KERNEL_EVENT_LOGGER
directly.

Change-Id: Ib9cf3a58b12bf4e78f264d8e8ac48a8104120c3b
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2016-03-13 21:35:07 -04:00
commit 207d0e799e
2 changed files with 1 additions and 11 deletions

View file

@ -83,20 +83,10 @@ config RING_BUFFER
their own buffer memory and can store arbitrary data. For optimal
performance, use buffer sizes that are a power of 2.
config EVENT_LOGGER
bool
prompt "Enable event logger"
default n
select RING_BUFFER
help
Enable event logging feature. Allow the usage of a ring buffer to
transmit event messages with a single interface to collect them.
config KERNEL_EVENT_LOGGER
bool
prompt "Enable kernel event logger features"
default n
select EVENT_LOGGER
help
This feature enables the usage of the profiling logger. Provides the
logging of sleep events (either entering or leaving low power conditions),

View file

@ -14,6 +14,6 @@ obj-$(CONFIG_NANO_TIMEOUTS) += nano_sleep.o
obj-$(CONFIG_STACK_CANARIES) += compiler_stack_protect.o
obj-$(CONFIG_ADVANCED_POWER_MANAGEMENT) += idle.o
obj-$(CONFIG_NANO_TIMERS) += nano_timer.o
obj-$(CONFIG_EVENT_LOGGER) += event_logger.o
obj-$(CONFIG_KERNEL_EVENT_LOGGER) += event_logger.o
obj-$(CONFIG_KERNEL_EVENT_LOGGER) += kernel_event_logger.o
obj-$(CONFIG_RING_BUFFER) += ring_buffer.o