mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 12:25:27 +00:00
Kconfig: Move CONFIG_SYS_[CP]BSIZE to common/Kconfig
Move CONFIG_SYS_CBSIZE (console buffer size) and CONFIG_SYS_PBSIZE (console print buffer size) out of cmd/Kconfig and in to common/Kconfig. Create help entries for both which explain their usage and why they are both not entirely command centric. Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
bfaa048d94
commit
d900449a7a
2 changed files with 23 additions and 14 deletions
14
cmd/Kconfig
14
cmd/Kconfig
|
@ -75,20 +75,6 @@ config SYS_MAXARGS
|
||||||
int "Maximum number arguments accepted by commands"
|
int "Maximum number arguments accepted by commands"
|
||||||
default 16
|
default 16
|
||||||
|
|
||||||
config SYS_CBSIZE
|
|
||||||
int "Console input buffer size"
|
|
||||||
default 2048 if ARCH_TEGRA || ARCH_VERSAL || ARCH_ZYNQ || ARCH_ZYNQMP || \
|
|
||||||
RCAR_GEN3 || TARGET_SOCFPGA_SOC64
|
|
||||||
default 512 if ARCH_MX5 || ARCH_MX6 || ARCH_MX7 || FSL_LSCH2 || \
|
|
||||||
FSL_LSCH3 || X86
|
|
||||||
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
|
config SYS_XTRACE
|
||||||
bool "Command execution tracer"
|
bool "Command execution tracer"
|
||||||
depends on CMDLINE
|
depends on CMDLINE
|
||||||
|
|
|
@ -52,6 +52,29 @@ config CONSOLE_RECORD_IN_SIZE
|
||||||
The buffer is allocated immediately after the malloc() region is
|
The buffer is allocated immediately after the malloc() region is
|
||||||
ready.
|
ready.
|
||||||
|
|
||||||
|
config SYS_CBSIZE
|
||||||
|
int "Console input buffer size"
|
||||||
|
default 2048 if ARCH_TEGRA || ARCH_VERSAL || ARCH_ZYNQ || ARCH_ZYNQMP || \
|
||||||
|
RCAR_GEN3 || TARGET_SOCFPGA_SOC64
|
||||||
|
default 512 if ARCH_MX5 || ARCH_MX6 || ARCH_MX7 || FSL_LSCH2 || \
|
||||||
|
FSL_LSCH3 || X86
|
||||||
|
default 256 if M68K || PPC
|
||||||
|
default 1024
|
||||||
|
help
|
||||||
|
Set the size of the console input buffer. This is used both in the
|
||||||
|
case of reading input literally from the user in some manner as well
|
||||||
|
as when we need to construct or modify that type of input, for
|
||||||
|
example when constructing "bootargs" for the OS.
|
||||||
|
|
||||||
|
config SYS_PBSIZE
|
||||||
|
int "Console output buffer size"
|
||||||
|
default 1024 if ARCH_SUNXI
|
||||||
|
default 1044
|
||||||
|
help
|
||||||
|
Set the size of the console output buffer. This is used when we need
|
||||||
|
to work with some form of a buffer while providing output in some
|
||||||
|
form to the user.
|
||||||
|
|
||||||
config DISABLE_CONSOLE
|
config DISABLE_CONSOLE
|
||||||
bool "Add functionality to disable console completely"
|
bool "Add functionality to disable console completely"
|
||||||
help
|
help
|
||||||
|
|
Loading…
Add table
Reference in a new issue