1menu "Integrator Options" 2 depends on ARCH_INTEGRATOR 3 4choice 5 prompt "ARM Ltd. Integrator board select" 6 7config TARGET_INTEGRATORAP_CM720T 8 bool "Support integratorap_cm720t" 9 select CPU_ARM720T 10 11config TARGET_INTEGRATORAP_CM920T 12 bool "Support integratorap_cm920t" 13 select CPU_ARM920T 14 15config TARGET_INTEGRATORCP_CM920T 16 bool "Support integratorcp_cm920t" 17 select CPU_ARM920T 18 19config TARGET_INTEGRATORAP_CM926EJS 20 bool "Support integratorap_cm926ejs" 21 select CPU_ARM926EJS 22 23config TARGET_INTEGRATORCP_CM926EJS 24 bool "Support integratorcp_cm926ejs" 25 select CPU_ARM926EJS 26 27config TARGET_INTEGRATORCP_CM1136 28 bool "Support integratorcp_cm1136" 29 select CPU_ARM1136 30 31config TARGET_INTEGRATORAP_CM946ES 32 bool "Support integratorap_cm946es" 33 select CPU_ARM946ES 34 35config TARGET_INTEGRATORCP_CM946ES 36 bool "Support integratorcp_cm946es" 37 select CPU_ARM946ES 38 39endchoice 40 41config SYS_BOARD 42 default "integrator" 43 44config SYS_VENDOR 45 default "armltd" 46 47config SYS_CONFIG_NAME 48 default "integratorap" if TARGET_INTEGRATORAP_CM720T || \ 49 TARGET_INTEGRATORAP_CM920T || \ 50 TARGET_INTEGRATORAP_CM926EJS || \ 51 TARGET_INTEGRATORAP_CM946ES 52 default "integratorcp" if TARGET_INTEGRATORCP_CM920T || \ 53 TARGET_INTEGRATORCP_CM926EJS || \ 54 TARGET_INTEGRATORCP_CM946ES || \ 55 TARGET_INTEGRATORCP_CM1136 56 57endmenu 58