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