upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
468 B
24 lines
468 B
if ROCKCHIP_RK3128
|
|
|
|
choice
|
|
prompt "RK3128 board select"
|
|
|
|
config TARGET_EVB_RK3128
|
|
bool "RK3128 evaluation board"
|
|
select BOARD_LATE_INIT
|
|
help
|
|
RK3128evb is a evaluation board for Rockchip rk3128,
|
|
with full function and phisical connectors support like
|
|
usb2.0 host ports, LVDS, JTAG, MAC, SDcard, HDMI, USB-2-serial...
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "rockchip"
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x0800
|
|
|
|
source "board/rockchip/evb_rk3128/Kconfig"
|
|
|
|
endif
|
|
|