summaryrefslogtreecommitdiff
path: root/target/config/Config.in.arch.choice
blob: c2fc7f2f32caeb6d74659184a02c7f77e6dcb31e (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
choice
prompt "Target architecture"

config ADK_CHOOSE_TARGET_ARCH
	bool "Choose target architecture"

config ADK_LINUX_ARM
	bool "arm system"
	select ADK_arm
	help
	  Support for ARM systems.

config ADK_LINUX_M68K
	bool "m68k system"
	select ADK_m68k
	help
	  Support for m68k systems.

config ADK_LINUX_MICROBLAZE
	bool "microblaze system"
	select ADK_microblaze
	help
	  Support for Microblaze systems.

config ADK_LINUX_MIPS
	bool "mips system"
	select ADK_mips
	help
	  Support for MIPS systems.

config ADK_LINUX_PPC
	bool "ppc system"
	select ADK_ppc
	help
	  Support for powerpc systems.

config ADK_LINUX_PPC64
	bool "ppc64 system"
	select ADK_ppc64
	help
	  Support for powerpc64 systems.

config ADK_LINUX_SPARC
	bool "sparc system"
	select ADK_sparc
	help
	  Support for sparc systems.

config ADK_LINUX_SPARC64
	bool "sparc64 system"
	select ADK_sparc64
	help
	  Support for sparc64 systems.

config ADK_LINUX_SH
	bool "superh system"
	select ADK_sh
	help
	  Support for superh systems.

config ADK_LINUX_X86
	bool "x86 system"
	select ADK_x86
	help
	  Support for x86 systems.

config ADK_LINUX_X86_64
	bool "x86_64 system"
	select ADK_x86_64
	help
	  Support for x86_64/amd64 systems.

endchoice