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 "powerpc" |
| 9 | |
| 10 | config FORCE_OPTIONS_FOR_ARCH |
| 11 | bool |
| 12 | default y |
| 13 | select ARCH_BIG_ENDIAN |
| 14 | select ARCH_HAS_MMU |
| 15 | |
| 16 | choice |
| 17 | prompt "Target Processor Type" |
| 18 | default CONFIG_CLASSIC |
| 19 | help |
| 20 | This is the processor core of your CPU. This information is used for |
| 21 | determining the correct assembler instructions to use for the core. |
| 22 | |
| 23 | The default is to build for a classic powerpc. |
| 24 | |
| 25 | config CONFIG_CLASSIC |
| 26 | bool "CLASSIC" |
| 27 | help |
| 28 | Classic powerpc architecture. |
| 29 | |
| 30 | config CONFIG_E500 |
| 31 | bool "E500" |
| 32 | help |
| 33 | e500 v1 and v2 core. |
| 34 | |
| 35 | endchoice |