Skip to content
Snippets Groups Projects
Commit 61b4d355 authored by Simon Glass's avatar Simon Glass
Browse files

sandbox: Enable console recording and silent console


Allow console recording so that tests can use it. Also allow the console
output to be suppressed, to reduce test output 'noise'.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 9854a874
No related branches found
No related tags found
No related merge requests found
CONFIG_SYS_MALLOC_F_LEN=0x2000
CONFIG_PCI=y CONFIG_PCI=y
CONFIG_DEFAULT_DEVICE_TREE="sandbox" CONFIG_DEFAULT_DEVICE_TREE="sandbox"
CONFIG_FIT=y CONFIG_FIT=y
...@@ -16,6 +17,8 @@ CONFIG_CMD_PMIC=y ...@@ -16,6 +17,8 @@ CONFIG_CMD_PMIC=y
CONFIG_CMD_REGULATOR=y CONFIG_CMD_REGULATOR=y
CONFIG_CMD_TPM=y CONFIG_CMD_TPM=y
CONFIG_CMD_TPM_TEST=y CONFIG_CMD_TPM_TEST=y
CONFIG_CONSOLE_RECORD=y
CONFIG_CONSOLE_RECORD_OUT_SIZE=0x1000
CONFIG_OF_CONTROL=y CONFIG_OF_CONTROL=y
CONFIG_OF_HOSTFILE=y CONFIG_OF_HOSTFILE=y
CONFIG_REGMAP=y CONFIG_REGMAP=y
......
...@@ -65,6 +65,7 @@ ...@@ -65,6 +65,7 @@
#define CONFIG_SYS_HUSH_PARSER #define CONFIG_SYS_HUSH_PARSER
#define CONFIG_SYS_LONGHELP /* #undef to save memory */ #define CONFIG_SYS_LONGHELP /* #undef to save memory */
#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
#define CONFIG_SILENT_CONSOLE
/* Print Buffer Size */ /* Print Buffer Size */
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment