]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
common: Reword CONSOLE_RECORD_.*SIZE help texts
authorTom Rini <trini@konsulko.com>
Thu, 19 Oct 2023 15:04:35 +0000 (11:04 -0400)
committerTom Rini <trini@konsulko.com>
Mon, 30 Oct 2023 19:32:49 +0000 (15:32 -0400)
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>
common/Kconfig

index 43701fe9e8974d265835788327e56dd7acf81af5..0f548195197df7cfa8b75ee97b44eb2a2ae795b4 100644 (file)
@@ -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.