1menu "Integrator Options"
2	depends on ARCH_INTEGRATOR
3
4choice
5	prompt "Integrator platform select"
6
7config ARCH_INTEGRATOR_AP
8	bool "Support Integrator/AP platform"
9
10config ARCH_INTEGRATOR_CP
11	bool "Support Integrator/CP platform"
12	select ARCH_CINTEGRATOR
13
14endchoice
15
16config ARCH_CINTEGRATOR
17	bool
18
19choice
20	prompt "Integrator core module select"
21
22config CM720T
23	bool "Core Module for ARM720T"
24	select CPU_ARM720T
25
26config CM920T
27	bool "Core Module for ARM920T"
28	select CPU_ARM920T
29
30config CM926EJ_S
31	bool "Core Module for ARM926EJ-STM"
32	select CPU_ARM926EJS
33
34config CM946ES
35	bool "Core Module for ARM946E-STM"
36	select CPU_ARM946ES
37
38config CM1136
39	bool "Core Module for ARM1136JF-STM"
40	select CPU_ARM1136
41
42endchoice
43
44config SYS_BOARD
45	default "integrator"
46
47config SYS_VENDOR
48	default "armltd"
49
50config SYS_CONFIG_NAME
51	default "integratorap" if ARCH_INTEGRATOR_AP
52	default "integratorcp" if ARCH_INTEGRATOR_CP
53
54endmenu
55