]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-integrator/Kconfig
ARM: integrator: split board select into AP/CP select and CM select
[karo-tx-uboot.git] / arch / arm / mach-integrator / Kconfig
1 menu "Integrator Options"
2         depends on ARCH_INTEGRATOR
3
4 choice
5         prompt "Integrator platform select"
6
7 config ARCH_INTEGRATOR_AP
8         bool "Support Integrator/AP platform"
9
10 config ARCH_INTEGRATOR_CP
11         bool "Support Integrator/CP platform"
12
13 endchoice
14
15 choice
16         prompt "Integrator core module select"
17
18 config CM720T
19         bool "Core Module for ARM720T"
20         select CPU_ARM720T
21
22 config CM920T
23         bool "Core Module for ARM920T"
24         select CPU_ARM920T
25
26 config CM926EJ_S
27         bool "Core Module for ARM926EJ-STM"
28         select CPU_ARM926EJS
29
30 config CM946ES
31         bool "Core Module for ARM946E-STM"
32         select CPU_ARM946ES
33
34 config CM1136
35         bool "Core Module for ARM1136JF-STM"
36         select CPU_ARM1136
37
38 endchoice
39
40 config SYS_BOARD
41         default "integrator"
42
43 config SYS_VENDOR
44         default "armltd"
45
46 config SYS_CONFIG_NAME
47         default "integratorap" if ARCH_INTEGRATOR_AP
48         default "integratorcp" if ARCH_INTEGRATOR_CP
49
50 endmenu