build: add config symbols for different ARM arch levels
[openwrt/staging/mkresin.git] / target / Config.in
1 source "tmp/.config-target.in"
2
3 # Kernel/Hardware features
4
5 config HAS_SPE_FPU
6 depends on powerpc
7 select HAS_FPU
8 bool
9
10 config HAS_FPU
11 bool
12
13 config AUDIO_SUPPORT
14 bool
15
16 config GPIO_SUPPORT
17 bool
18
19 config PCI_SUPPORT
20 select AUDIO_SUPPORT
21 bool
22
23 config PCIE_SUPPORT
24 bool
25
26 config PCMCIA_SUPPORT
27 bool
28
29 config USB_SUPPORT
30 select AUDIO_SUPPORT
31 bool
32
33 config USB_GADGET_SUPPORT
34 bool
35
36 config RTC_SUPPORT
37 bool
38
39 config BIG_ENDIAN
40 bool
41
42 config USES_INITRAMFS
43 bool
44
45 config USES_SQUASHFS
46 bool
47
48 config USES_JFFS2
49 bool
50
51 config USES_EXT4
52 bool
53
54 config USES_TARGZ
55 bool
56
57 config USES_CPIOGZ
58 bool
59
60 config USES_UBIFS
61 bool
62
63 config PROFILE_KCONFIG
64 bool
65
66 config NOMMU
67 bool
68
69 config HAS_MIPS16
70 depends on (mips || mipsel || mips64 || mips64el)
71 bool
72
73 config ARCH_64BIT
74 bool
75
76 # Architecture selection
77
78 config arm
79 bool
80
81 config armeb
82 select BIG_ENDIAN
83 bool
84
85 config arm_v4
86 bool
87
88 config arm_v5
89 bool
90
91 config arm_v6
92 bool
93
94 config arm_v7
95 bool
96
97 config avr32
98 select BIG_ENDIAN
99 bool
100
101 config cris
102 bool
103
104 config i386
105 bool
106
107 config i686
108 bool
109
110 config m68k
111 bool
112
113 config mips
114 select BIG_ENDIAN
115 bool
116
117 config mipsel
118 bool
119
120 config mips64
121 select BIG_ENDIAN
122 select ARCH_64BIT
123 bool
124
125 config mips64el
126 select ARCH_64BIT
127 bool
128
129 config powerpc
130 select BIG_ENDIAN
131 bool
132
133 config powerpc64
134 select BIG_ENDIAN
135 select ARCH_64BIT
136 bool
137
138 config sh3
139 bool
140
141 config sh3eb
142 select BIG_ENDIAN
143 bool
144
145 config sh4
146 bool
147
148 config sh4eb
149 select BIG_ENDIAN
150 bool
151
152 config sparc
153 select BIG_ENDIAN
154 bool
155
156 config x86_64
157 select ARCH_64BIT
158 bool
159
160 config ARCH
161 string
162 default "arm" if arm
163 default "armeb" if armeb
164 default "avr32" if avr32
165 default "cris" if cris
166 default "i386" if i386
167 default "i686" if i686
168 default "m68k" if m68k
169 default "mips" if mips
170 default "mipsel" if mipsel
171 default "mips64" if mips64
172 default "mips64el" if mips64el
173 default "powerpc" if powerpc
174 default "sh3" if sh3
175 default "sh3eb" if sh3eb
176 default "sh4" if sh4
177 default "sh4eb" if sh4eb
178 default "sparc" if sparc
179 default "x86_64" if x86_64
180