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 "sh64" |
| 9 | |
| 10 | config FORCE_OPTIONS_FOR_ARCH |
| 11 | bool |
| 12 | default y |
| 13 | select ARCH_ANY_ENDIAN |
| 14 | |
| 15 | choice |
| 16 | prompt "Target Processor Type" |
| 17 | default CONFIG_SH5 |
| 18 | help |
| 19 | This is the processor type of your CPU. This information is used for |
| 20 | optimizing purposes, as well as to determine if your CPU has an MMU, |
| 21 | an FPU, etc. If you pick the wrong CPU type, there is no guarantee |
| 22 | that uClibc will work at all.... |
| 23 | |
| 24 | Here are the available choices: |
| 25 | - "SH5" SuperH SH-5 101, 103 |
| 26 | |
| 27 | config CONFIG_SH5 |
| 28 | select ARCH_HAS_MMU |
| 29 | select UCLIBC_HAS_LFS |
| 30 | bool "SH5" |
| 31 | |
| 32 | endchoice |