mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-02 09:30:10 +00:00
cb32a91fbf
There is no difference in rk3328 board use for SYS_MALLOC_F_LEN, so we can use default value. Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
26 lines
493 B
Text
26 lines
493 B
Text
if ROCKCHIP_RK3328
|
|
|
|
choice
|
|
prompt "RK3328 board select"
|
|
|
|
config TARGET_EVB_RK3328
|
|
bool "RK3328 evaluation board"
|
|
help
|
|
RK3328evb is a evaluation board for Rockchip rk3328,
|
|
with full function and phisical connectors support like
|
|
usb2.0 host ports, LVDS, JTAG, MAC, SDcard, HDMI, USB-2-serial...
|
|
|
|
endchoice
|
|
|
|
config ROCKCHIP_BOOT_MODE_REG
|
|
default 0xff1005c8
|
|
|
|
config SYS_SOC
|
|
default "rk3328"
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x2000
|
|
|
|
source "board/rockchip/evb_rk3328/Kconfig"
|
|
|
|
endif
|