mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 22:46:01 +01:00
The commit e05689242238 ("Kconfig: Change SYS_MALLOC_F_LEN default to 0x2000") already setup default values from board Kconfigs that's why no reason to duplicate it again. Fixes: e05689242238 ("Kconfig: Change SYS_MALLOC_F_LEN default to 0x2000") Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/c3edd75b7a19d5cc205c9d5c37c2d86189ca3de6.1737380025.git.michal.simek@amd.com
23 lines
338 B
Plaintext
23 lines
338 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
if ARCH_ZYNQMP_R5
|
|
|
|
config SYS_BOARD
|
|
string "Board name"
|
|
default "zynqmp_r5"
|
|
|
|
config SYS_VENDOR
|
|
string "Vendor name"
|
|
default "xilinx"
|
|
|
|
config SYS_SOC
|
|
default "zynqmp-r5"
|
|
|
|
config CPU_FREQ_HZ
|
|
int "CPU frequency"
|
|
default 800000000
|
|
help
|
|
The value, in Hz, that the CPU clock is running at.
|
|
|
|
endif
|