1choice 2 prompt "Target Architecture Variant" 3 default BR2_sparc_v8 if BR2_sparc 4 default BR2_sparc_v9 if BR2_sparc64 5 depends on BR2_sparc || BR2_sparc64 6 help 7 Specific CPU variant to use 8 9config BR2_sparc_v8 10 bool "v8" 11 depends on BR2_sparc 12config BR2_sparc_leon3 13 bool "leon3" 14 depends on BR2_sparc 15config BR2_sparc_v9 16 bool "v9" 17 depends on BR2_sparc64 18endchoice 19 20config BR2_ARCH 21 default "sparc" if BR2_sparc 22 default "sparc64" if BR2_sparc64 23 24config BR2_NORMALIZED_ARCH 25 default "sparc" if BR2_sparc 26 default "sparc64" if BR2_sparc64 27 28config BR2_ENDIAN 29 default "BIG" 30 31config BR2_GCC_TARGET_CPU 32 default "leon3" if BR2_sparc_leon3 33 default "v8" if BR2_sparc_v8 34 default "ultrasparc" if BR2_sparc_v9 35 36config BR2_READELF_ARCH_NAME 37 default "Sparc" if BR2_sparc 38 default "Sparc v9" if BR2_sparc64 39 40# vim: ft=kconfig 41# -*- mode:kconfig; -*- 42