blob: 1852efee9e20505169afb57addc5d126c31f5aba [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 "sparc"
9
10config FORCE_OPTIONS_FOR_ARCH
11 bool
12 default y
13 select ARCH_BIG_ENDIAN
14
15choice
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
22config CONFIG_SPARC_V7
23 bool "SPARC v7"
24
25config CONFIG_SPARC_V8
26 bool "SPARC v8"
27
28config CONFIG_SPARC_V9
29 bool "SPARC v9"
30
31config CONFIG_SPARC_V9B
32 bool "SPARC v9b"
33
34endchoice