[PATCH v3 13/32] console: Move SYS_PBSIZE into common/
Simon Glass
sjg at chromium.org
Tue Oct 17 00:28:04 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>
---
(no changes since v1)
cmd/Kconfig | 5 -----
common/Kconfig | 5 +++++
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 18be3da972d2..148414f011df 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 93c96f23b013..1ffb055744d9 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.655.g421f12c284-goog
More information about the U-Boot
mailing list