blob: 84c44232940d813956a2a7bac3c8990ec3d30346 [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 "powerpc"
9
10config FORCE_OPTIONS_FOR_ARCH
11 bool
12 default y
13 select ARCH_BIG_ENDIAN
14 select ARCH_HAS_MMU
15
16choice
17 prompt "Target Processor Type"
18 default CONFIG_CLASSIC
19 help
20 This is the processor core of your CPU. This information is used for
21 determining the correct assembler instructions to use for the core.
22
23 The default is to build for a classic powerpc.
24
25config CONFIG_CLASSIC
26 bool "CLASSIC"
27 help
28 Classic powerpc architecture.
29
30config CONFIG_E500
31 bool "E500"
32 help
33 e500 v1 and v2 core.
34
35endchoice