From 87ed07a0022f0bc202be38abf4a748b5b12edf9a Mon Sep 17 00:00:00 2001 From: Rouven Czerwinski Date: Wed, 15 Sep 2021 14:36:44 +0200 Subject: console: add new CONFIG_CONSOLE_DISABLE_INPUT option Add CONFIG_CONSOLE_DISABLE_INPUT to initialize the consoles without input support, making default bootup effectively non-interactive. Signed-off-by: Rouven Czerwinski Signed-off-by: Ahmad Fatoum Tested-by: Christian Melki Link: https://lore.barebox.org/20210915123644.1292607-1-ahmad@a3f.at Signed-off-by: Sascha Hauer --- include/console.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include') diff --git a/include/console.h b/include/console.h index a71d0da42e..5d5783ca66 100644 --- a/include/console.h +++ b/include/console.h @@ -18,6 +18,8 @@ #define CONSOLE_STDOUT (1 << 1) #define CONSOLE_STDERR (1 << 2) +#define CONSOLE_STDIOE (CONSOLE_STDIN | CONSOLE_STDOUT | CONSOLE_STDERR) + enum console_mode { CONSOLE_MODE_NORMAL, CONSOLE_MODE_RS485, -- cgit v1.2.3