From 5acb7fc9a9ef7b9abf11553f7ca05438b4d6426e Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Mon, 18 Jun 2018 18:38:01 +0300 Subject: [PATCH] subsys: console: Make CONSOLE_GETCHAR and *_GETLINE optional It should be possible to make both these options off, and that should be default, otherwise targets not supporting them yet, e.g. native_posix, have build issues. Signed-off-by: Paul Sokolovsky --- subsys/console/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/subsys/console/Kconfig b/subsys/console/Kconfig index 741bf7dfa27..1b65e460c3f 100644 --- a/subsys/console/Kconfig +++ b/subsys/console/Kconfig @@ -16,6 +16,7 @@ config CONSOLE_SUBSYS if CONSOLE_SUBSYS choice prompt "Console 'get' function selection" + optional config CONSOLE_GETCHAR bool "Character by character input and output"