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