mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-25 11:57:22 +00:00
kylin board use rk3036 SOC, 512M sdram, 8G emmc. This add some basic files required to allow the board to output serial message and can run command(mmc info etc). Signed-off-by: Lin Huang <hl@rock-chips.com> Acked-by: Simon Glass <sjg@chromium.org>
21 lines
342 B
Text
21 lines
342 B
Text
if ROCKCHIP_RK3036
|
|
|
|
config TARGET_EVB_RK3036
|
|
bool "EVB_RK3036"
|
|
|
|
config TARGET_KYLIN_RK3036
|
|
bool "KYLIN_RK3036"
|
|
|
|
config SYS_SOC
|
|
default "rockchip"
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x400
|
|
|
|
config ROCKCHIP_COMMON
|
|
bool "Support rk common fuction"
|
|
|
|
source "board/evb_rk3036/evb_rk3036/Kconfig"
|
|
source "board/kylin/kylin_rk3036/Kconfig"
|
|
|
|
endif
|