zephyr/subsys/logging/backends/Kconfig.efi_console
Christopher Friedt f5587552bb logging: move backends to subdirectory
This is mainly to reduce clutter in `subsys/logging`, but also to make
backend management slightly easier.

Signed-off-by: Christopher Friedt <cfriedt@fb.com>
2022-10-01 03:34:48 -07:00

19 lines
451 B
Plaintext

# Copyright (c) 2021 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
config LOG_BACKEND_EFI_CONSOLE
bool "EFI_CONSOLE backend"
depends on X86_EFI_CONSOLE
select LOG_OUTPUT
default y if !UART_CONSOLE
help
When enabled backend is using EFI CONSOLE to output logs.
if LOG_BACKEND_EFI_CONSOLE
backend = EFI_CON
backend-str = efi_console
source "subsys/logging/Kconfig.template.log_format_config"
endif # LOG_BACKEND_EFI_CONSOLE