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