[PATCH 15/25] console: Move SYS_PBSIZE into common/
Simon Glass
sjg at chromium.org
Sun Sep 24 22:39:33 CEST 2023
This relates to printing output and does not need a command line. Move
it next to the other console-related options.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
cmd/Kconfig | 5 -----
common/Kconfig | 5 +++++
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index a254c41110ec..5f6834b335dc 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -84,11 +84,6 @@ config SYS_CBSIZE
default 256 if M68K || PPC
default 1024
-config SYS_PBSIZE
- int "Buffer size for console output"
- default 1024 if ARCH_SUNXI
- default 1044
-
config SYS_XTRACE
bool "Command execution tracer"
depends on CMDLINE
diff --git a/common/Kconfig b/common/Kconfig
index 21eaa5e815f9..08d490ad4776 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -52,6 +52,11 @@ config CONSOLE_RECORD_IN_SIZE
The buffer is allocated immediately after the malloc() region is
ready.
+config SYS_PBSIZE
+ int "Buffer size for console output"
+ default 1024 if ARCH_SUNXI
+ default 1044
+
config DISABLE_CONSOLE
bool "Add functionality to disable console completely"
help
--
2.42.0.515.g380fc7ccd1-goog
More information about the U-Boot
mailing list