blob: 02535b96b740f32bc478ea6b0ef7935f47232ec7 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#
2# For a description of the syntax of this configuration file,
3# see extra/config/Kconfig-language.txt
4#
5
6config TARGET_ARCH
7 string
8 default "sh64"
9
10config FORCE_OPTIONS_FOR_ARCH
11 bool
12 default y
13 select ARCH_ANY_ENDIAN
14
15choice
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
27config CONFIG_SH5
28 select ARCH_HAS_MMU
29 select UCLIBC_HAS_LFS
30 bool "SH5"
31
32endchoice