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.
36 lines
420 B
36 lines
420 B
if TARGET_SUN4I
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "sun4i"
|
|
|
|
endif
|
|
|
|
if TARGET_SUN5I
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "sun5i"
|
|
|
|
endif
|
|
|
|
if TARGET_SUN7I
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "sun7i"
|
|
|
|
endif
|
|
|
|
if TARGET_SUN4I || TARGET_SUN5I || TARGET_SUN7I
|
|
|
|
config SYS_CPU
|
|
default "armv7"
|
|
|
|
config SYS_BOARD
|
|
default "sunxi"
|
|
|
|
config SYS_SOC
|
|
default "sunxi"
|
|
|
|
config FDTFILE
|
|
string "Default fdtfile env setting for this board"
|
|
|
|
endif
|
|
|