Instead of using individual SoC kconfigs to determine whether to enable the Xtensa simulator logging backend, simply use CONFIG_SIMULATOR_XTENSA. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
27 lines
689 B
Plaintext
27 lines
689 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config LOG_BACKEND_XTENSA_SIM
|
|
bool "Xtensa simulator backend"
|
|
depends on SIMULATOR_XTENSA
|
|
default y if SIMULATOR_XTENSA
|
|
select LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP
|
|
help
|
|
Enable backend in xtensa simulator
|
|
|
|
config LOG_BACKEND_XTENSA_OUTPUT_BUFFER_SIZE
|
|
int "Size of the output buffer"
|
|
default 16
|
|
depends on LOG_BACKEND_XTENSA_SIM
|
|
help
|
|
Buffer is used by log_output module for preparing output data (e.g.
|
|
string formatting).
|
|
|
|
if LOG_BACKEND_XTENSA_SIM
|
|
|
|
backend = XTENSA_SIM
|
|
backend-str = xtensa_sim
|
|
source "subsys/logging/Kconfig.template.log_format_config"
|
|
|
|
endif # LOG_BACKEND_XTENSA_SIM
|