diff options
author | Tom Rini | 2023-10-19 11:04:35 -0400 |
---|---|---|
committer | Tom Rini | 2023-10-30 15:32:49 -0400 |
commit | 8af8378779fc1a29ca1d62e2467bbbc064f3d38e (patch) | |
tree | 4ec56d32b2f0c3c2054e1a7ead88016f2d4f14fa /common/Kconfig | |
parent | 7dd06b1621579262e5be46d78ba1d63c8afe8040 (diff) |
common: Reword CONSOLE_RECORD_.*SIZE help texts
Make it clear that in the options for setting the console record buffer
sizes that we are talking about buffers for that feature specifically
and not the general console buffers.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/Kconfig')
-rw-r--r-- | common/Kconfig | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/common/Kconfig b/common/Kconfig index 43701fe9e89..0f548195197 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -28,26 +28,26 @@ config CONSOLE_RECORD_OUT_SIZE depends on CONSOLE_RECORD default 0x400 if CONSOLE_RECORD help - Set the size of the console output buffer. When this fills up, no - more data will be recorded until some is removed. The buffer is - allocated immediately after the malloc() region is ready. + 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 + is allocated immediately after the malloc() region is ready. config CONSOLE_RECORD_OUT_SIZE_F hex "Output buffer size before relocation" depends on CONSOLE_RECORD default 0x400 if CONSOLE_RECORD help - Set the size of the console output buffer before relocation. When - this fills up, no more data will be recorded until some is removed. - The buffer is allocated immediately after the early malloc() region is - ready. + Set the size of the console recording output buffer before + relocation. When this fills up, no more data will be recorded until + some is removed. The buffer is allocated immediately after the early + malloc() region is ready. config CONSOLE_RECORD_IN_SIZE hex "Input buffer size" depends on CONSOLE_RECORD default 0x100 if CONSOLE_RECORD help - Set the size of the console input buffer. When this contains data, + Set the size of the console recording input buffer. When this contains data, tstc() and getc() will use this in preference to real device input. The buffer is allocated immediately after the malloc() region is ready. |