mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
45c1d34157
Each SoC have its config setting and its Kconfig, move the specific setting to its own Kconfig file. Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
28 lines
389 B
Text
28 lines
389 B
Text
if ROCKCHIP_RK322X
|
|
|
|
|
|
config TARGET_EVB_RK3229
|
|
bool "EVB_RK3229"
|
|
select BOARD_LATE_INIT
|
|
|
|
config SYS_SOC
|
|
default "rk322x"
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x400
|
|
|
|
config SPL_SERIAL_SUPPORT
|
|
default y
|
|
|
|
config TPL_MAX_SIZE
|
|
default 28672
|
|
|
|
config TPL_STACK
|
|
default 0x10088000
|
|
|
|
config TPL_TEXT_BASE
|
|
default 0x10081000
|
|
|
|
source "board/rockchip/evb_rk3229/Kconfig"
|
|
|
|
endif
|