ramips: fix LAN LED trigger assignment for Xiaomi Router 3 Pro
[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 ARCH_64BIT
105 bool
106
107 config VIRTIO_SUPPORT
108 bool
109
110 config USES_ROOTFS_PART
111 bool
112
113 config USES_BOOT_PART
114 bool
115
116 # Architecture selection
117
118 config aarch64
119 select ARCH_64BIT
120 bool
121
122 config aarch64_be
123 select ARCH_64BIT
124 select BIG_ENDIAN
125 bool
126
127 config arc
128 bool
129
130 config arceb
131 select BIG_ENDIAN
132 bool
133
134 config arm
135 bool
136
137 config armeb
138 select BIG_ENDIAN
139 bool
140
141 config arm_v6
142 bool
143
144 config arm_v7
145 bool
146
147 config i386
148 bool
149
150 config i686
151 bool
152
153 config m68k
154 bool
155
156 config mips
157 select BIG_ENDIAN
158 bool
159
160 config mipsel
161 bool
162
163 config mips64
164 select BIG_ENDIAN
165 select ARCH_64BIT
166 bool
167
168 config mips64el
169 select ARCH_64BIT
170 bool
171
172 config powerpc
173 select BIG_ENDIAN
174 bool
175
176 config powerpc64
177 select BIG_ENDIAN
178 select ARCH_64BIT
179 bool
180
181 config sh3
182 bool
183
184 config sh3eb
185 select BIG_ENDIAN
186 bool
187
188 config sh4
189 bool
190
191 config sh4eb
192 select BIG_ENDIAN
193 bool
194
195 config sparc
196 select BIG_ENDIAN
197 bool
198
199 config x86_64
200 select ARCH_64BIT
201 bool
202
203 config ARCH
204 string
205 default "aarch64" if aarch64
206 default "aarch64_be" if aarch64_be
207 default "arc" if arc
208 default "arceb" if arceb
209 default "arm" if arm
210 default "armeb" if armeb
211 default "i386" if i386
212 default "i686" if i686
213 default "m68k" if m68k
214 default "mips" if mips
215 default "mipsel" if mipsel
216 default "mips64" if mips64
217 default "mips64el" if mips64el
218 default "powerpc" if powerpc
219 default "powerpc64" if powerpc64
220 default "sh3" if sh3
221 default "sh3eb" if sh3eb
222 default "sh4" if sh4
223 default "sh4eb" if sh4eb
224 default "sparc" if sparc
225 default "x86_64" if x86_64
226