u-boot-brain/arch/arm/mach-integrator/Kconfig
Masahiro Yamada 9ef851f890 ARM: integrator: split board select into AP/CP select and CM select
Select integrator boards by the combination of platform select (AP/CP)
and core module select (CM720T, CM920T, ...).

This allows us to remove CONFIG_SYS_EXTRA_OPTIONS and make Kconfig
much cleaner.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
2015-04-23 08:52:27 -04:00

51 lines
860 B
Plaintext

menu "Integrator Options"
depends on ARCH_INTEGRATOR
choice
prompt "Integrator platform select"
config ARCH_INTEGRATOR_AP
bool "Support Integrator/AP platform"
config ARCH_INTEGRATOR_CP
bool "Support Integrator/CP platform"
endchoice
choice
prompt "Integrator core module select"
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
endmenu