aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRabin Vincent <rabin.vincent@stericsson.com>2010-03-09 10:49:03 +0530
committerJohn Rigby <john.rigby@linaro.org>2010-09-02 22:44:35 -0600
commitb15e9758512c67a4d66c3d53b763b48bfbb7c100 (patch)
treeafff220fb4018edea6ca1675468e36f05b11edd9
parent9e78bf73e7a53fa7f6c88ba3c4b0a008294cb3e2 (diff)
multiboard: make platform type a choice instead of menu
Currently, multiple platforms are not supported in one image. So don't provide the option to build such an image, because it won't work. Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com>
-rw-r--r--arch/arm/mach-u8500/Kconfig14
1 files changed, 8 insertions, 6 deletions
diff --git a/arch/arm/mach-u8500/Kconfig b/arch/arm/mach-u8500/Kconfig
index a4b16d9745d..46e812ea935 100644
--- a/arch/arm/mach-u8500/Kconfig
+++ b/arch/arm/mach-u8500/Kconfig
@@ -10,10 +10,12 @@ config UX500_SOC_DB5500
default y
depends on MACH_U5500_SIMULATOR
-menu "8500 target platform"
+choice
+ prompt "Ux500 target platform"
+ default MACH_U8500_MOP
config MACH_U8500_SIMULATOR
- bool "8500 Simulator platform"
+ bool "U8500 Simulator (SVP8500)"
select CPU_V7
select ARM_GIC
select SMP
@@ -21,7 +23,7 @@ config MACH_U8500_SIMULATOR
Supports Simulation for u8500 platform
config MACH_U5500_SIMULATOR
- bool "5500(FairBanks) Simulator platform"
+ bool "U5500 Simulator (SVP5500)"
select CPU_V7
select ARM_GIC
select SMP
@@ -29,14 +31,14 @@ config MACH_U5500_SIMULATOR
Supports Simulation for u5500(FairBanks) platform
config MACH_U8500_MOP
- bool "MOP500 platform"
+ bool "U8500 MOP500/HREF"
select CPU_V7
select ARM_GIC
select SMP
- default y
help
Supports MOP500 target board
-endmenu
+
+endchoice
config U8500_CPUIDLE
tristate "CPUIdle support"