aboutsummaryrefslogtreecommitdiff
path: root/cmd/Kconfig
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2022-09-13 01:23:58 +0100
committerAndre Przywara <andre.przywara@arm.com>2022-10-18 08:18:30 +0100
commit177040b1eb06f29eabe9d567a515ee506481f8d4 (patch)
tree654430fd72e71b5903ffb7e9402b2d11b8a3e9db /cmd/Kconfig
parentceda40a8e641b2b085e1c79573f06c4f3336bc5b (diff)
downloadu-boot-177040b1eb06f29eabe9d567a515ee506481f8d4.zip
u-boot-177040b1eb06f29eabe9d567a515ee506481f8d4.tar.gz
u-boot-177040b1eb06f29eabe9d567a515ee506481f8d4.tar.bz2
sunxi: Kconfig: use SoC-wide values for some symbols
Some configuration symbols formerly defined in header files were recently converted to Kconfig symbols. This moved their value definition into *every* defconfig file, even though those values are hardly board choices. Use the new Kconfig option to define per-SoC default values, in just one place, which makes the definition in each defconfig file redundant. We refrain from setting a sunxi specific value for CONFIG_SYS_BOOTM_LEN, so this defaults to a much better 64MB for uncompressed arm64 kernels. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r--cmd/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index 49247a4..16030e3 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -86,6 +86,7 @@ config SYS_CBSIZE
config SYS_PBSIZE
int "Buffer size for console output"
+ default 1024 if ARCH_SUNXI
default 1044
config SYS_XTRACE