mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 14:40:41 +00:00
6ae5860942
Our chips may have different max spl size and spl header, so we need to add configs for that. Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com> Acked-by: Simon Glass <sjg@chromium.org> Dropped CONFIG_ROCKCHIP_MAX_SPL_SIZE from rk3288_common.h, Added $(if...) to tools/Makefile to fix widespread build breakage Signed-off-by: Simon Glass <sjg@chromium.org> Series-changes: 8 - Drop CONFIG_ROCKCHIP_MAX_SPL_SIZE from rk3288_common.h, - Add $(if...) to tools/Makefile to fix widespread build breakage
23 lines
352 B
Text
23 lines
352 B
Text
if ROCKCHIP_RK3036
|
|
|
|
config TARGET_EVB_RK3036
|
|
bool "EVB_RK3036"
|
|
|
|
config SYS_SOC
|
|
default "rockchip"
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x400
|
|
|
|
config ROCKCHIP_SPL_HDR
|
|
default "RK30"
|
|
|
|
config ROCKCHIP_MAX_SPL_SIZE
|
|
default 0x1000
|
|
|
|
config ROCKCHIP_COMMON
|
|
bool "Support rk common fuction"
|
|
|
|
source "board/evb_rk3036/evb_rk3036/Kconfig"
|
|
|
|
endif
|