diff options
| author | Heinrich Schuchardt <[email protected]> | 2025-11-09 11:10:08 +0100 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2025-11-21 19:18:22 +0100 |
| commit | e7eeeeb415a2d87369d52cfd08a923f48782bd23 (patch) | |
| tree | 3f1786e0f0fde56c5f2bd11951225c71cdd5ea29 | |
| parent | 1a498e5fb8a70ba9be7bb8e7c88227e9229d1d99 (diff) | |
common: default CONFIG_CONSOLE_RECORD_OUT_SIZE=0x6000
For some tests the current default of 0x400 for
CONFIG_CONSOLE_RECORD_OUT_SIZE is too small.
Raise the value to 0x6000 which is already the most common value.
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Ilias Apalodimas <[email protected]>
Signed-off-by: Heinrich Schuchardt <[email protected]>
| -rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Kconfig b/common/Kconfig index 0c25a8fc866..47d17f4e7c6 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -26,7 +26,7 @@ config CONSOLE_RECORD_INIT_F config CONSOLE_RECORD_OUT_SIZE hex "Output buffer size" depends on CONSOLE_RECORD - default 0x400 if CONSOLE_RECORD + default 0x6000 help Set the size of the console recording output buffer. When this fills up, no more data will be recorded until some is removed. The buffer |
