diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2023-03-29 10:39:32 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-03-30 13:36:35 +0000 |
commit | ddf8d19fc245b0230a2715bbf556ee2e8baef404 (patch) | |
tree | 35a8bd73bc4b2e97cacb77ce6a6ae43d769e9b4d /src/console/Kconfig | |
parent | d4c5fc0e8ed962215767a9445df12be880994ad5 (diff) |
console: Deselect using ANSI escape characters when SimNow is used
To remove the annoying "ESC [1m" at SimNow console window.
Change-Id: I300aee946f342f41b94288b75b843956de9d3e88
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74072
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/console/Kconfig')
-rw-r--r-- | src/console/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig index 721cc60e2b..8efe2e4799 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -454,7 +454,7 @@ config CONSOLE_USE_LOGLEVEL_PREFIX config CONSOLE_USE_ANSI_ESCAPES bool "Use ANSI escape sequences for console highlighting" - default y + default y if !CONSOLE_AMD_SIMNOW help If enabled, certain consoles (e.g. UART) that are meant to be read on a terminal will use ANSI escape sequences (like `ESC [1m`) to |