mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
558d774a4a
Now that all three SPEAr3xx platforms can be built into one kernel, rework KConfig to allow this. Move everything into one KConfig file while we are here. Reviewed-by: Stanley Miao <stanley.miao@windriver.com> Signed-off-by: Ryan Mallon <ryan@bluewatersys.com> Signed-off-by: Viresh Kumar <viresh.kumar@st.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
44 lines
744 B
Plaintext
44 lines
744 B
Plaintext
#
|
|
# SPEAr3XX Machine configuration file
|
|
#
|
|
|
|
if ARCH_SPEAR3XX
|
|
|
|
menu "SPEAr3xx Implementations"
|
|
config BOARD_SPEAR300_EVB
|
|
bool "SPEAr300 Evaluation Board"
|
|
select MACH_SPEAR300
|
|
help
|
|
Supports ST SPEAr300 Evaluation Board
|
|
|
|
config BOARD_SPEAR310_EVB
|
|
bool "SPEAr310 Evaluation Board"
|
|
select MACH_SPEAR310
|
|
help
|
|
Supports ST SPEAr310 Evaluation Board
|
|
|
|
config BOARD_SPEAR320_EVB
|
|
bool "SPEAr320 Evaluation Board"
|
|
select MACH_SPEAR320
|
|
help
|
|
Supports ST SPEAr320 Evaluation Board
|
|
|
|
endmenu
|
|
|
|
config MACH_SPEAR300
|
|
bool "SPEAr300"
|
|
help
|
|
Supports ST SPEAr300 Machine
|
|
|
|
config MACH_SPEAR310
|
|
bool "SPEAr310"
|
|
help
|
|
Supports ST SPEAr310 Machine
|
|
|
|
config MACH_SPEAR320
|
|
bool "SPEAr320"
|
|
help
|
|
Supports ST SPEAr320 Machine
|
|
|
|
endif #ARCH_SPEAR3XX
|