xref: /openbmc/u-boot/arch/Kconfig (revision 5ff10aa7)
1choice
2	prompt "Architecture select"
3	default SANDBOX
4
5config ARC
6	bool "ARC architecture"
7
8config ARM
9	bool "ARM architecture"
10
11config AVR32
12	bool "AVR32 architecture"
13
14config BLACKFIN
15	bool "Blackfin architecture"
16
17config M68K
18	bool "M68000 architecture"
19
20config MICROBLAZE
21	bool "MicroBlaze architecture"
22
23config MIPS
24	bool "MIPS architecture"
25
26config NDS32
27	bool "NDS32 architecture"
28
29config NIOS2
30	bool "Nios II architecture"
31
32config OPENRISC
33	bool "OpenRISC architecture"
34
35config PPC
36	bool "PowerPC architecture"
37
38config SANDBOX
39	bool "Sandbox"
40
41config SH
42	bool "SuperH architecture"
43
44config SPARC
45	bool "SPARC architecture"
46
47config X86
48	bool "x86 architecture"
49
50endchoice
51
52source "arch/arc/Kconfig"
53source "arch/arm/Kconfig"
54source "arch/avr32/Kconfig"
55source "arch/blackfin/Kconfig"
56source "arch/m68k/Kconfig"
57source "arch/microblaze/Kconfig"
58source "arch/mips/Kconfig"
59source "arch/nds32/Kconfig"
60source "arch/nios2/Kconfig"
61source "arch/openrisc/Kconfig"
62source "arch/powerpc/Kconfig"
63source "arch/sandbox/Kconfig"
64source "arch/sh/Kconfig"
65source "arch/sparc/Kconfig"
66source "arch/x86/Kconfig"
67