u-boot-brain/arch/arm/mach-integrator/Kconfig
Simon Glass c1c3fe2307 env: Convert CONFIG_ENV_IS_IN... to a choice
At present we support multiple environment drivers but there is not way to
select between them at run time. Also settings related to the position and
size of the environment area are global (i.e. apply to all locations).

Until these limitations are removed we cannot really support more than one
environment location. Adjust the location to be a choice so that only one
can be selected. By default the environment is 'nowhere', meaning that the
environment exists only in memory and cannot be saved.

Also expand the help for the 'nowhere' option and move it to the top since
it is the default.

Signed-off-by: Simon Glass <sjg@chromium.org>
[trini: Move all of the imply logic to default X if Y so it works again]
Signed-off-by: Tom Rini <trini@konsulko.com>
2017-08-15 20:50:01 -04:00

60 lines
977 B
Plaintext

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