blob: 7698022ae431d0f0045b03b400246c0cf638eb19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#
# For a description of the syntax of this configuration file,
# see extra/config/Kconfig-language.txt
#
config TARGET_ARCH
string
default "powerpc"
config FORCE_OPTIONS_FOR_ARCH
bool
default y
select ARCH_BIG_ENDIAN
select ARCH_HAS_MMU
select ARCH_HAS_DEPRECATED_SYSCALLS
choice
prompt "Target Processor Type"
default CONFIG_CLASSIC
help
This is the processor core of your CPU. This information is used for
determining the correct assembler instructions to use for the core.
The default is to build for a classic powerpc.
config CONFIG_CLASSIC
bool "CLASSIC"
help
Classic powerpc architecture.
config CONFIG_E500
bool "E500"
help
e500 v1 and v2 core.
endchoice
|