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