1#
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	select ARCH_HAS_UCONTEXT
15	select ARCH_HAS_DEPRECATED_SYSCALLS
16
17choice
18	prompt "Target Processor Type"
19	default CONFIG_SPARC_V8
20	help
21	  This is the processor type of your CPU. This information is used for
22	  optimizing purposes.  Building for a v8 SPARC is pretty safe nowadays.
23
24config CONFIG_SPARC_V7
25	bool "SPARC v7"
26
27config CONFIG_SPARC_V8
28	bool "SPARC v8"
29
30endchoice
31