ath79: add support for Compex WPJ558 (16M)
[openwrt/openwrt.git] / target / Config.in
1 source "tmp/.config-target.in"
2
3 # Kernel/Hardware features
4
5 config HAS_TESTING_KERNEL
6 bool
7
8 config HAS_SPE_FPU
9 depends on powerpc
10 select HAS_FPU
11 bool
12
13 config HAS_FPU
14 bool
15
16 config HAS_DT_OVERLAY_SUPPORT
17 bool
18
19 config AUDIO_SUPPORT
20 bool
21
22 config GPIO_SUPPORT
23 bool
24
25 config PCI_SUPPORT
26 select AUDIO_SUPPORT
27 bool
28
29 config PCIE_SUPPORT
30 bool
31
32 config PCMCIA_SUPPORT
33 bool
34
35 config PWM_SUPPORT
36 bool
37
38 config USB_SUPPORT
39 select AUDIO_SUPPORT
40 bool
41
42 config USB_GADGET_SUPPORT
43 bool
44
45 config RTC_SUPPORT
46 bool
47
48 config BIG_ENDIAN
49 bool
50
51 config USES_DEVICETREE
52 bool
53
54 config USES_INITRAMFS
55 bool
56
57 config USES_SEPARATE_INITRAMFS
58 bool
59
60 config USES_SQUASHFS
61 bool
62
63 config USES_JFFS2
64 bool
65
66 config USES_JFFS2_NAND
67 bool
68
69 config USES_EXT4
70 bool
71
72 config USES_TARGZ
73 bool
74
75 config USES_CPIOGZ
76 bool
77
78 config USES_MINOR
79 bool
80
81 config USES_UBIFS
82 bool
83 select NAND_SUPPORT
84
85 config LOW_MEMORY_FOOTPRINT
86 bool
87
88 config SMALL_FLASH
89 bool
90
91 config NOMMU
92 bool
93
94 config HAS_MIPS16
95 depends on (mips || mipsel || mips64 || mips64el)
96 bool
97
98 config RFKILL_SUPPORT
99 bool
100
101 config NAND_SUPPORT
102 bool
103
104 config LEGACY_SDCARD_SUPPORT
105 bool
106
107 config ARCH_64BIT
108 bool
109
110 config VIRTIO_SUPPORT
111 bool
112
113 config USES_ROOTFS_PART
114 bool
115
116 config USES_BOOT_PART
117 bool
118
119 # Architecture selection
120
121 config aarch64
122 select ARCH_64BIT
123 bool
124
125 config aarch64_be
126 select ARCH_64BIT
127 select BIG_ENDIAN
128 bool
129
130 config arc
131 bool
132
133 config arceb
134 select BIG_ENDIAN
135 bool
136
137 config arm
138 bool
139
140 config armeb
141 select BIG_ENDIAN
142 bool
143
144 config arm_v6
145 bool
146
147 config arm_v7
148 bool
149
150 config i386
151 bool
152
153 config i686
154 bool
155
156 config m68k
157 bool
158
159 config mips
160 select BIG_ENDIAN
161 bool
162
163 config mipsel
164 bool
165
166 config mips64
167 select BIG_ENDIAN
168 select ARCH_64BIT
169 bool
170
171 config mips64el
172 select ARCH_64BIT
173 bool
174
175 config powerpc
176 select BIG_ENDIAN
177 bool
178
179 config powerpc64
180 select BIG_ENDIAN
181 select ARCH_64BIT
182 bool
183
184 config sh3
185 bool
186
187 config sh3eb
188 select BIG_ENDIAN
189 bool
190
191 config sh4
192 bool
193
194 config sh4eb
195 select BIG_ENDIAN
196 bool
197
198 config sparc
199 select BIG_ENDIAN
200 bool
201
202 config x86_64
203 select ARCH_64BIT
204 bool
205
206 config ARCH
207 string
208 default "aarch64" if aarch64
209 default "aarch64_be" if aarch64_be
210 default "arc" if arc
211 default "arceb" if arceb
212 default "arm" if arm
213 default "armeb" if armeb
214 default "i386" if i386
215 default "i686" if i686
216 default "m68k" if m68k
217 default "mips" if mips
218 default "mipsel" if mipsel
219 default "mips64" if mips64
220 default "mips64el" if mips64el
221 default "powerpc" if powerpc
222 default "powerpc64" if powerpc64
223 default "sh3" if sh3
224 default "sh3eb" if sh3eb
225 default "sh4" if sh4
226 default "sh4eb" if sh4eb
227 default "sparc" if sparc
228 default "x86_64" if x86_64
229