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
455 B
36 lines
455 B
if ARCH_MX7
|
|
|
|
config MX7
|
|
bool
|
|
select ROM_UNIFIED_SECTIONS
|
|
default y
|
|
|
|
config MX7D
|
|
select ROM_UNIFIED_SECTIONS
|
|
bool
|
|
|
|
choice
|
|
prompt "MX7 board select"
|
|
optional
|
|
|
|
config TARGET_MX7DSABRESD
|
|
bool "mx7dsabresd"
|
|
select MX7D
|
|
select DM
|
|
select DM_THERMAL
|
|
|
|
config TARGET_WARP7
|
|
bool "warp7"
|
|
select MX7D
|
|
select DM
|
|
select DM_THERMAL
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "mx7"
|
|
|
|
source "board/freescale/mx7dsabresd/Kconfig"
|
|
source "board/warp7/Kconfig"
|
|
|
|
endif
|
|
|