lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see extra/config/Kconfig-language.txt |
| 4 | # |
| 5 | |
| 6 | config TARGET_ARCH |
| 7 | string |
| 8 | default "sparc" |
| 9 | |
| 10 | config FORCE_OPTIONS_FOR_ARCH |
| 11 | bool |
| 12 | default y |
| 13 | select ARCH_BIG_ENDIAN |
| 14 | |
| 15 | choice |
| 16 | prompt "Target Processor Type" |
| 17 | default CONFIG_SPARC_V8 |
| 18 | help |
| 19 | This is the processor type of your CPU. This information is used for |
| 20 | optimizing purposes. Building for a v8 SPARC is pretty safe nowadays. |
| 21 | |
| 22 | config CONFIG_SPARC_V7 |
| 23 | bool "SPARC v7" |
| 24 | |
| 25 | config CONFIG_SPARC_V8 |
| 26 | bool "SPARC v8" |
| 27 | |
| 28 | config CONFIG_SPARC_V9 |
| 29 | bool "SPARC v9" |
| 30 | |
| 31 | config CONFIG_SPARC_V9B |
| 32 | bool "SPARC v9b" |
| 33 | |
| 34 | endchoice |