1# Copyright (c) 2021 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4config LOG_BACKEND_EFI_CONSOLE 5 bool "EFI_CONSOLE backend" 6 depends on X86_EFI_CONSOLE 7 default y if !UART_CONSOLE 8 help 9 When enabled backend is using EFI CONSOLE to output logs. 10 11if LOG_BACKEND_EFI_CONSOLE 12 13backend = EFI_CON 14backend-str = efi_console 15source "subsys/logging/Kconfig.template.log_format_config" 16 17endif # LOG_BACKEND_EFI_CONSOLE 18