realtek: add RTL821X_CHIP_ID
[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 loongarch64
160 select ARCH_64BIT
161 bool
162
163 config m68k
164 bool
165
166 config mips
167 select BIG_ENDIAN
168 bool
169
170 config mipsel
171 bool
172
173 config mips64
174 select BIG_ENDIAN
175 select ARCH_64BIT
176 bool
177
178 config mips64el
179 select ARCH_64BIT
180 bool
181
182 config powerpc
183 select BIG_ENDIAN
184 bool
185
186 config powerpc64
187 select BIG_ENDIAN
188 select ARCH_64BIT
189 bool
190
191 config riscv64
192 select ARCH_64BIT
193 bool
194
195 config sh3
196 bool
197
198 config sh3eb
199 select BIG_ENDIAN
200 bool
201
202 config sh4
203 bool
204
205 config sh4eb
206 select BIG_ENDIAN
207 bool
208
209 config sparc
210 select BIG_ENDIAN
211 bool
212
213 config x86_64
214 select ARCH_64BIT
215 bool
216
217 config ARCH
218 string
219 default "aarch64" if aarch64
220 default "aarch64_be" if aarch64_be
221 default "arc" if arc
222 default "arceb" if arceb
223 default "arm" if arm
224 default "armeb" if armeb
225 default "i386" if i386
226 default "i686" if i686
227 default "loongarch64" if loongarch64
228 default "m68k" if m68k
229 default "mips" if mips
230 default "mipsel" if mipsel
231 default "mips64" if mips64
232 default "mips64el" if mips64el
233 default "powerpc" if powerpc
234 default "powerpc64" if powerpc64
235 default "riscv64" if riscv64
236 default "sh3" if sh3
237 default "sh3eb" if sh3eb
238 default "sh4" if sh4
239 default "sh4eb" if sh4eb
240 default "sparc" if sparc
241 default "x86_64" if x86_64
242