From e16f711a9986d00da74fdf215353fd3817ab3863 Mon Sep 17 00:00:00 2001 From: Frantisek Hrbata Date: Tue, 5 Nov 2024 08:26:59 +0100 Subject: [PATCH] change(newlib): use a general console name in the new line conversion options Currently, the new line ending conversion options for stdin and stdout are specifically described for UART, which is inaccurate since the console could be connected to USB serial/CDC or have secondary output. Use a generic console term instead of UART. Signed-off-by: Frantisek Hrbata --- components/newlib/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/newlib/Kconfig b/components/newlib/Kconfig index 92573ca73d..78eaa47376 100644 --- a/components/newlib/Kconfig +++ b/components/newlib/Kconfig @@ -1,11 +1,11 @@ menu "Newlib" choice NEWLIB_STDOUT_LINE_ENDING - prompt "Line ending for UART output" + prompt "Line ending for console output" default NEWLIB_STDOUT_LINE_ENDING_CRLF depends on VFS_SUPPORT_IO help - This option allows configuring the desired line endings sent to UART + This option allows configuring the desired line endings sent to console when a newline ('\n', LF) appears on stdout. Three options are possible: @@ -26,11 +26,11 @@ menu "Newlib" endchoice choice NEWLIB_STDIN_LINE_ENDING - prompt "Line ending for UART input" + prompt "Line ending for console input" default NEWLIB_STDIN_LINE_ENDING_CR depends on VFS_SUPPORT_IO help - This option allows configuring which input sequence on UART produces + This option allows configuring which input sequence on console produces a newline ('\n', LF) on stdin. Three options are possible: