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