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.
59 lines
977 B
59 lines
977 B
menu "Integrator Options"
|
|
depends on ARCH_INTEGRATOR
|
|
|
|
choice
|
|
prompt "Integrator platform select"
|
|
optional
|
|
|
|
config ARCH_INTEGRATOR_AP
|
|
bool "Support Integrator/AP platform"
|
|
|
|
config ARCH_INTEGRATOR_CP
|
|
bool "Support Integrator/CP platform"
|
|
select ARCH_CINTEGRATOR
|
|
|
|
endchoice
|
|
|
|
config ARCH_CINTEGRATOR
|
|
bool
|
|
|
|
choice
|
|
prompt "Integrator core module select"
|
|
optional
|
|
|
|
config CM720T
|
|
bool "Core Module for ARM720T"
|
|
select CPU_ARM720T
|
|
|
|
config CM920T
|
|
bool "Core Module for ARM920T"
|
|
select CPU_ARM920T
|
|
|
|
config CM926EJ_S
|
|
bool "Core Module for ARM926EJ-STM"
|
|
select CPU_ARM926EJS
|
|
|
|
config CM946ES
|
|
bool "Core Module for ARM946E-STM"
|
|
select CPU_ARM946ES
|
|
|
|
config CM1136
|
|
bool "Core Module for ARM1136JF-STM"
|
|
select CPU_ARM1136
|
|
|
|
endchoice
|
|
|
|
config SYS_BOARD
|
|
default "integrator"
|
|
|
|
config SYS_VENDOR
|
|
default "armltd"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "integratorap" if ARCH_INTEGRATOR_AP
|
|
default "integratorcp" if ARCH_INTEGRATOR_CP
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x2000
|
|
|
|
endmenu
|
|
|