barebox/arch/arm/mach-pxa/Kconfig
Sascha Hauer 3c9135a2b5 pxa: add type to Kconfig choice
To avoid Kconfig warning as long we do not have any board
support for pxa.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2011-12-07 13:06:46 +01:00

39 lines
492 B
Text

if ARCH_PXA
config ARCH_TEXT_BASE
hex
config BOARDINFO
string
# ----------------------------------------------------------
config ARCH_PXA2XX
bool
select CPU_XSCALE
choice
prompt "Intel/Marvell PXA Processor"
config ARCH_PXA27X
bool "PXA27x"
select ARCH_PXA2XX
endchoice
# ----------------------------------------------------------
if ARCH_PXA27X
choice
prompt "PXA27x Board Type"
bool
endchoice
endif
# ----------------------------------------------------------
endif