]>
Commit | Line | Data |
---|---|---|
79ee3c1f TP |
1 | choice |
2 | prompt "Target Architecture Variant" | |
4a92f675 WB |
3 | depends on BR2_sparc || BR2_sparc64 |
4 | default BR2_sparc_v8 if BR2_sparc | |
5 | default BR2_sparc_v9 if BR2_sparc64 | |
79ee3c1f TP |
6 | help |
7 | Specific CPU variant to use | |
8 | ||
79ee3c1f TP |
9 | config BR2_sparc_v8 |
10 | bool "v8" | |
4a92f675 | 11 | depends on BR2_sparc |
43b78e72 AL |
12 | config BR2_sparc_leon3 |
13 | bool "leon3" | |
4a92f675 WB |
14 | depends on BR2_sparc |
15 | config BR2_sparc_v9 | |
16 | bool "v9" | |
17 | depends on BR2_sparc64 | |
79ee3c1f | 18 | endchoice |
44c04a2b TP |
19 | |
20 | config BR2_ARCH | |
21 | default "sparc" if BR2_sparc | |
4a92f675 | 22 | default "sparc64" if BR2_sparc64 |
44c04a2b TP |
23 | |
24 | config BR2_ENDIAN | |
25 | default "BIG" | |
26 | ||
44c04a2b | 27 | config BR2_GCC_TARGET_CPU |
43b78e72 | 28 | default "leon3" if BR2_sparc_leon3 |
a5023c52 | 29 | default "v8" if BR2_sparc_v8 |
4a92f675 | 30 | default "ultrasparc" if BR2_sparc_v9 |
d04ea6e4 TP |
31 | |
32 | config BR2_READELF_ARCH_NAME | |
33 | default "Sparc" if BR2_sparc | |
34 | default "Sparc v9" if BR2_sparc64 |