tools: add kernel2minor utility for Mikrotik devices
[oweals/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_MINOR
67         bool
68
69 config USES_UBIFS
70         bool
71         select NAND_SUPPORT
72
73 config LOW_MEMORY_FOOTPRINT
74         bool
75
76 config SMALL_FLASH
77         bool
78
79 config NOMMU
80         bool
81
82 config HAS_MIPS16
83         depends on (mips || mipsel || mips64 || mips64el)
84         bool
85
86 config RFKILL_SUPPORT
87         bool
88
89 config NAND_SUPPORT
90         bool
91
92 config ARCH_64BIT
93         bool
94
95 # Architecture selection
96
97 config aarch64
98         select ARCH_64BIT
99         bool
100
101 config aarch64_be
102         select ARCH_64BIT
103         select BIG_ENDIAN
104         bool
105
106 config arc
107         bool
108
109 config arceb
110         select BIG_ENDIAN
111         bool
112
113 config arm
114         bool
115
116 config armeb
117         select BIG_ENDIAN
118         bool
119
120 config arm_v4
121         bool
122
123 config arm_v5
124         bool
125
126 config arm_v6
127         bool
128
129 config arm_v7
130         bool
131
132 config i386
133         bool
134
135 config i686
136         bool 
137
138 config m68k
139         bool
140
141 config mips
142         select BIG_ENDIAN
143         bool
144
145 config mipsel
146         bool
147
148 config mips64
149         select BIG_ENDIAN
150         select ARCH_64BIT
151         bool
152
153 config mips64el
154         select ARCH_64BIT
155         bool
156
157 config powerpc
158         select BIG_ENDIAN
159         bool
160
161 config powerpc64
162         select BIG_ENDIAN
163         select ARCH_64BIT
164         bool
165
166 config sh3
167         bool
168
169 config sh3eb
170         select BIG_ENDIAN
171         bool
172
173 config sh4
174         bool
175
176 config sh4eb
177         select BIG_ENDIAN
178         bool
179
180 config sparc
181         select BIG_ENDIAN
182         bool
183
184 config x86_64
185         select ARCH_64BIT
186         bool
187
188 config ARCH
189         string
190         default "aarch64"   if aarch64
191         default "aarch64_be" if aarch64_be
192         default "arc"       if arc
193         default "arceb"     if arceb
194         default "arm"       if arm
195         default "armeb"     if armeb
196         default "i386"      if i386
197         default "i686"      if i686
198         default "m68k"      if m68k
199         default "mips"      if mips
200         default "mipsel"    if mipsel
201         default "mips64"    if mips64
202         default "mips64el"  if mips64el
203         default "powerpc"   if powerpc
204         default "sh3"       if sh3
205         default "sh3eb"     if sh3eb
206         default "sh4"       if sh4
207         default "sh4eb"     if sh4eb
208         default "sparc"     if sparc
209         default "x86_64"    if x86_64
210