1 | #
|
---|
2 | # Copyright (c) 2006 Ondrej Palkovsky
|
---|
3 | # Copyright (c) 2009 Martin Decky
|
---|
4 | # All rights reserved.
|
---|
5 | #
|
---|
6 | # Redistribution and use in source and binary forms, with or without
|
---|
7 | # modification, are permitted provided that the following conditions
|
---|
8 | # are met:
|
---|
9 | #
|
---|
10 | # - Redistributions of source code must retain the above copyright
|
---|
11 | # notice, this list of conditions and the following disclaimer.
|
---|
12 | # - Redistributions in binary form must reproduce the above copyright
|
---|
13 | # notice, this list of conditions and the following disclaimer in the
|
---|
14 | # documentation and/or other materials provided with the distribution.
|
---|
15 | # - The name of the author may not be used to endorse or promote products
|
---|
16 | # derived from this software without specific prior written permission.
|
---|
17 | #
|
---|
18 | # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | #
|
---|
29 |
|
---|
30 | ## General platform options
|
---|
31 |
|
---|
32 | % Platform
|
---|
33 | @ "abs32le" abstract 32-bit little endian
|
---|
34 | @ "amd64" AMD64/Intel EM64T (PC)
|
---|
35 | @ "arm32" ARM 32-bit
|
---|
36 | @ "ia32" Intel IA-32 (PC)
|
---|
37 | @ "ia64" Intel IA-64
|
---|
38 | @ "mips32" MIPS 32-bit
|
---|
39 | @ "mips64" MIPS 64-bit
|
---|
40 | @ "ppc32" PowerPC 32-bit (iMac G4)
|
---|
41 | @ "sparc64" Sun UltraSPARC 64-bit
|
---|
42 | ! PLATFORM (choice)
|
---|
43 |
|
---|
44 | % Machine type
|
---|
45 | @ "msim" MSIM
|
---|
46 | @ "bgxemul" GXEmul big endian
|
---|
47 | @ "lgxemul" GXEmul little endian
|
---|
48 | @ "bmalta" MIPS Malta Development Board big endian
|
---|
49 | @ "lmalta" MIPS Malta Development Board little endian
|
---|
50 | ! [PLATFORM=mips32] MACHINE (choice)
|
---|
51 |
|
---|
52 | % Machine type
|
---|
53 | @ "msim" MSIM
|
---|
54 | ! [PLATFORM=mips64] MACHINE (choice)
|
---|
55 |
|
---|
56 | % Machine type
|
---|
57 | @ "i460GX" i460GX chipset machine
|
---|
58 | @ "ski" Ski ia64 simulator
|
---|
59 | ! [PLATFORM=ia64] MACHINE (choice)
|
---|
60 |
|
---|
61 | % Machine type
|
---|
62 | @ "generic" Generic Sun workstation or server
|
---|
63 | ! [PLATFORM=sparc64] MACHINE (choice)
|
---|
64 |
|
---|
65 | % Machine type
|
---|
66 | @ "gta02" GTA02 / Neo FreeRunner
|
---|
67 | @ "integratorcp" Integratorcp
|
---|
68 | @ "beagleboardxm" BeogleBoard-xM
|
---|
69 | ! [PLATFORM=arm32] MACHINE (choice)
|
---|
70 |
|
---|
71 | % CPU type
|
---|
72 | @ "pentium4" Pentium 4
|
---|
73 | @ "pentium3" Pentium 3
|
---|
74 | @ "core" Core Solo/Duo
|
---|
75 | @ "athlon_xp" Athlon XP
|
---|
76 | @ "athlon_mp" Athlon MP
|
---|
77 | @ "i486" i486
|
---|
78 | ! [PLATFORM=ia32] PROCESSOR (choice)
|
---|
79 |
|
---|
80 | % CPU type
|
---|
81 | @ "opteron" Opteron
|
---|
82 | ! [PLATFORM=amd64] PROCESSOR (choice)
|
---|
83 |
|
---|
84 | % CPU type
|
---|
85 | @ "us" UltraSPARC I-II subarchitecture
|
---|
86 | @ "us3" UltraSPARC III-IV subarchitecture
|
---|
87 | @ "sun4v" Niagara (sun4v)
|
---|
88 | ! [PLATFORM=sparc64&MACHINE=generic] PROCESSOR (choice)
|
---|
89 |
|
---|
90 | % CPU type
|
---|
91 | @ "armv4" ARMv4
|
---|
92 | ! [PLATFORM=arm32&(MACHINE=gta02)] PROCESSOR (choice)
|
---|
93 |
|
---|
94 | % CPU type
|
---|
95 | @ "armv5" ARMv5
|
---|
96 | ! [PLATFORM=arm32&MACHINE=integratorcp] PROCESSOR (choice)
|
---|
97 |
|
---|
98 | % CPU type
|
---|
99 | @ "armv7_a" ARMv7-A
|
---|
100 | ! [PLATFORM=arm32&MACHINE=beagleboardxm] PROCESSOR (choice)
|
---|
101 |
|
---|
102 | % CPU type
|
---|
103 | @ "R4000" MIPS R4000
|
---|
104 | ! [PLATFORM=mips32&MACHINE=msim] PROCESSOR (choice)
|
---|
105 |
|
---|
106 | % CPU type
|
---|
107 | @ "4Kc" MIPS 4Kc
|
---|
108 | ! [PLATFORM=mips32&(MACHINE=bmalta|MACHINE=lmalta)] PROCESSOR (choice)
|
---|
109 |
|
---|
110 | % RAM disk format
|
---|
111 | @ "tmpfs" TMPFS image
|
---|
112 | @ "fat" FAT16 image
|
---|
113 | @ "ext4fs" ext4 image
|
---|
114 | ! RDFMT (choice)
|
---|
115 |
|
---|
116 |
|
---|
117 | ## Mapping between platform and kernel architecture
|
---|
118 |
|
---|
119 | % Kernel architecture
|
---|
120 | @ "abs32le"
|
---|
121 | ! [PLATFORM=abs32le] KARCH (choice)
|
---|
122 |
|
---|
123 | % Kernel architecture
|
---|
124 | @ "amd64"
|
---|
125 | ! [PLATFORM=amd64] KARCH (choice)
|
---|
126 |
|
---|
127 | % Kernel architecture
|
---|
128 | @ "arm32"
|
---|
129 | ! [PLATFORM=arm32] KARCH (choice)
|
---|
130 |
|
---|
131 | % Kernel architecture
|
---|
132 | @ "ia32"
|
---|
133 | ! [PLATFORM=ia32] KARCH (choice)
|
---|
134 |
|
---|
135 | % Kernel architecture
|
---|
136 | @ "ia32xen"
|
---|
137 | ! [PLATFORM=ia32xen] KARCH (choice)
|
---|
138 |
|
---|
139 | % Kernel architecture
|
---|
140 | @ "ia64"
|
---|
141 | ! [PLATFORM=ia64] KARCH (choice)
|
---|
142 |
|
---|
143 | % Kernel architecture
|
---|
144 | @ "mips32"
|
---|
145 | ! [PLATFORM=mips32] KARCH (choice)
|
---|
146 |
|
---|
147 | % Kernel architecture
|
---|
148 | @ "mips64"
|
---|
149 | ! [PLATFORM=mips64] KARCH (choice)
|
---|
150 |
|
---|
151 | % Kernel architecture
|
---|
152 | @ "ppc32"
|
---|
153 | ! [PLATFORM=ppc32] KARCH (choice)
|
---|
154 |
|
---|
155 | % Kernel architecture
|
---|
156 | @ "ppc64"
|
---|
157 | ! [PLATFORM=ppc64] KARCH (choice)
|
---|
158 |
|
---|
159 | % Kernel architecture
|
---|
160 | @ "sparc64"
|
---|
161 | ! [PLATFORM=sparc64] KARCH (choice)
|
---|
162 |
|
---|
163 |
|
---|
164 | ## Mapping between platform and user space architecture
|
---|
165 |
|
---|
166 | % User space architecture
|
---|
167 | @ "abs32le"
|
---|
168 | ! [PLATFORM=abs32le] UARCH (choice)
|
---|
169 |
|
---|
170 | % User space architecture
|
---|
171 | @ "amd64"
|
---|
172 | ! [PLATFORM=amd64] UARCH (choice)
|
---|
173 |
|
---|
174 | % User space architecture
|
---|
175 | @ "arm32"
|
---|
176 | ! [PLATFORM=arm32] UARCH (choice)
|
---|
177 |
|
---|
178 | % User space architecture
|
---|
179 | @ "ia32"
|
---|
180 | ! [PLATFORM=ia32|PLATFORM=ia32xen] UARCH (choice)
|
---|
181 |
|
---|
182 | % User space architecture
|
---|
183 | @ "ia64"
|
---|
184 | ! [PLATFORM=ia64] UARCH (choice)
|
---|
185 |
|
---|
186 | % User space architecture
|
---|
187 | @ "mips32"
|
---|
188 | ! [PLATFORM=mips32&(MACHINE=msim|MACHINE=lgxemul|MACHINE=lmalta)] UARCH (choice)
|
---|
189 |
|
---|
190 | % User space architecture
|
---|
191 | @ "mips32eb"
|
---|
192 | ! [PLATFORM=mips32&(MACHINE=bgxemul|MACHINE=bmalta)] UARCH (choice)
|
---|
193 |
|
---|
194 | % User space architecture
|
---|
195 | @ "mips64"
|
---|
196 | ! [PLATFORM=mips64] UARCH (choice)
|
---|
197 |
|
---|
198 | % User space architecture
|
---|
199 | @ "ppc32"
|
---|
200 | ! [PLATFORM=ppc32] UARCH (choice)
|
---|
201 |
|
---|
202 | % User space architecture
|
---|
203 | @ "ppc64"
|
---|
204 | ! [PLATFORM=ppc64] UARCH (choice)
|
---|
205 |
|
---|
206 | % User space architecture
|
---|
207 | @ "sparc64"
|
---|
208 | ! [PLATFORM=sparc64] UARCH (choice)
|
---|
209 |
|
---|
210 |
|
---|
211 | ## Mapping between platform and boot architecture
|
---|
212 |
|
---|
213 | % Boot architecture
|
---|
214 | @ "abs32le"
|
---|
215 | ! [PLATFORM=abs32le] BARCH (choice)
|
---|
216 |
|
---|
217 | % Boot architecture
|
---|
218 | @ "amd64"
|
---|
219 | ! [PLATFORM=amd64] BARCH (choice)
|
---|
220 |
|
---|
221 | % Boot architecture
|
---|
222 | @ "arm32"
|
---|
223 | ! [PLATFORM=arm32] BARCH (choice)
|
---|
224 |
|
---|
225 | % Boot architecture
|
---|
226 | @ "ia32"
|
---|
227 | ! [PLATFORM=ia32] BARCH (choice)
|
---|
228 |
|
---|
229 | % Boot architecture
|
---|
230 | @ "ia32xen"
|
---|
231 | ! [PLATFORM=ia32xen] BARCH (choice)
|
---|
232 |
|
---|
233 | % Boot architecture
|
---|
234 | @ "ia64"
|
---|
235 | ! [PLATFORM=ia64] BARCH (choice)
|
---|
236 |
|
---|
237 | % Boot architecture
|
---|
238 | @ "mips32"
|
---|
239 | ! [PLATFORM=mips32] BARCH (choice)
|
---|
240 |
|
---|
241 | % Boot architecture
|
---|
242 | @ "mips64"
|
---|
243 | ! [PLATFORM=mips64] BARCH (choice)
|
---|
244 |
|
---|
245 | % Boot architecture
|
---|
246 | @ "ppc32"
|
---|
247 | ! [PLATFORM=ppc32] BARCH (choice)
|
---|
248 |
|
---|
249 | % Boot architecture
|
---|
250 | @ "ppc64"
|
---|
251 | ! [PLATFORM=ppc64] BARCH (choice)
|
---|
252 |
|
---|
253 | % Boot architecture
|
---|
254 | @ "sparc64"
|
---|
255 | ! [PLATFORM=sparc64] BARCH (choice)
|
---|
256 |
|
---|
257 |
|
---|
258 | ## Mapping between platform and image format
|
---|
259 |
|
---|
260 | % Image format
|
---|
261 | @ "binary"
|
---|
262 | ! [PLATFORM=mips32&MACHINE=msim] IMAGE (choice)
|
---|
263 |
|
---|
264 | % Image format
|
---|
265 | @ "elf"
|
---|
266 | ! [PLATFORM=mips32&(MACHINE=bmalta|MACHINE=lmalta)] IMAGE (choice)
|
---|
267 |
|
---|
268 | % Image format
|
---|
269 | @ "ecoff"
|
---|
270 | ! [PLATFORM=mips32&(MACHINE=bgxemul|MACHINE=lgxemul)] IMAGE (choice)
|
---|
271 |
|
---|
272 | % Image format
|
---|
273 | @ "binary"
|
---|
274 | ! [PLATFORM=mips64] IMAGE (choice)
|
---|
275 |
|
---|
276 |
|
---|
277 | ## Compiler options
|
---|
278 |
|
---|
279 | % Compiler
|
---|
280 | @ "gcc_cross" GNU C Compiler (cross-compiler)
|
---|
281 | @ "gcc_native" GNU C Compiler (native)
|
---|
282 | @ "icc" Intel C Compiler
|
---|
283 | @ "clang" Clang
|
---|
284 | ! [PLATFORM=amd64|PLATFORM=ia32] COMPILER (choice)
|
---|
285 |
|
---|
286 | % Compiler
|
---|
287 | @ "gcc_cross" GNU C Compiler (cross-compiler)
|
---|
288 | @ "gcc_native" GNU C Compiler (native)
|
---|
289 | @ "icc" Intel C Compiler
|
---|
290 | ! [PLATFORM=ia64] COMPILER (choice)
|
---|
291 |
|
---|
292 | % Compiler
|
---|
293 | @ "gcc_cross" GNU C Compiler (cross-compiler)
|
---|
294 | @ "gcc_native" GNU C Compiler (native)
|
---|
295 | ! [PLATFORM=sparc64] COMPILER (choice)
|
---|
296 |
|
---|
297 | % Compiler
|
---|
298 | @ "gcc_cross" GNU C Compiler (cross-compiler)
|
---|
299 | @ "gcc_native" GNU C Compiler (native)
|
---|
300 | ! [PLATFORM=arm32|PLATFORM=mips32|PLATFORM=mips64|PLATFORM=ppc32] COMPILER (choice)
|
---|
301 |
|
---|
302 | % Compiler
|
---|
303 | @ "gcc_cross" GNU C Compiler (cross-compiler)
|
---|
304 | @ "gcc_native" GNU C Compiler (native)
|
---|
305 | @ "clang" Clang
|
---|
306 | ! [PLATFORM=abs32le] COMPILER (choice)
|
---|
307 |
|
---|
308 |
|
---|
309 | ## Cross-compiler target for abstract architecture
|
---|
310 |
|
---|
311 | % Cross-compiler target
|
---|
312 | @ "arm32" ARM 32-bit
|
---|
313 | @ "ia32" Intel IA-32
|
---|
314 | @ "mips32" MIPS 32-bit
|
---|
315 | ! [PLATFORM=abs32le&COMPILER=gcc_cross] CROSS_TARGET (choice)
|
---|
316 |
|
---|
317 |
|
---|
318 | ## Kernel configuration
|
---|
319 |
|
---|
320 | % Fences
|
---|
321 | ! [PLATFORM=ia32&(PROCESSOR=athlon_xp|PROCESSOR=athlon_mp|PROCESSOR=pentium3)] CONFIG_FENCES_P3 (y)
|
---|
322 |
|
---|
323 | % Fences
|
---|
324 | ! [PLATFORM=ia32&(PROCESSOR=pentium4|PROCESSOR=core)] CONFIG_FENCES_P4 (y)
|
---|
325 |
|
---|
326 | % Fences
|
---|
327 | ! [PLATFORM=amd64] CONFIG_FENCES_P4 (y)
|
---|
328 |
|
---|
329 | % ACPI support
|
---|
330 | ! [PLATFORM=ia32|PLATFORM=amd64] CONFIG_ACPI (y)
|
---|
331 |
|
---|
332 | % Hierarchical page tables support
|
---|
333 | ! [PLATFORM=abs32le|PLATFORM=ia32|PLATFORM=amd64|PLATFORM=arm32|PLATFORM=mips32|PLATFORM=ppc32] CONFIG_PAGE_PT (y)
|
---|
334 |
|
---|
335 | % Page hash table support
|
---|
336 | ! [PLATFORM=ia64|PLATFORM=mips64|PLATFORM=sparc64] CONFIG_PAGE_HT (y)
|
---|
337 |
|
---|
338 | % Software integer division support
|
---|
339 | ! [PLATFORM=abs32le|PLATFORM=ia32|PLATFORM=arm32|PLATFORM=ia64|PLATFORM=mips32|PLATFORM=mips64|PLATFORM=ppc32] CONFIG_SOFTINT (y)
|
---|
340 |
|
---|
341 | % ASID support
|
---|
342 | ! [PLATFORM=ia64|PLATFORM=mips32|PLATFORM=mips64|PLATFORM=ppc32|PLATFORM=sparc64] CONFIG_ASID (y)
|
---|
343 |
|
---|
344 | % ASID FIFO support
|
---|
345 | ! [PLATFORM=ia64|PLATFORM=mips32|PLATFORM=mips64|PLATFORM=ppc32|PLATFORM=sparc64] CONFIG_ASID_FIFO (y)
|
---|
346 |
|
---|
347 | % OpenFirmware tree support
|
---|
348 | ! [PLATFORM=ppc32|PLATFORM=sparc64] CONFIG_OFW_TREE (y)
|
---|
349 |
|
---|
350 | % OpenFirmware PCI bus support
|
---|
351 | ! [PLATFORM=sparc64] CONFIG_OFW_PCI (y)
|
---|
352 |
|
---|
353 | % Multiboot standard support
|
---|
354 | ! [PLATFORM=ia32|PLATFORM=amd64] CONFIG_MULTIBOOT (y)
|
---|
355 |
|
---|
356 | % FPU support
|
---|
357 | ! [PLATFORM=ia32|PLATFORM=amd64|PLATFORM=ia64|PLATFORM=sparc64] CONFIG_FPU (y)
|
---|
358 |
|
---|
359 | % FPU support
|
---|
360 | ! [PLATFORM=mips32&(MACHINE=lgxemul|MACHINE=bgxemul)] CONFIG_FPU (y)
|
---|
361 |
|
---|
362 | ## armv7 made fpu hardware compulsory
|
---|
363 | % FPU support
|
---|
364 | ! [PLATFORM=arm32&PROCESSOR=armv7_a] CONFIG_FPU (y)
|
---|
365 |
|
---|
366 | % FPU support
|
---|
367 | ! [PLATFORM=arm32&MACHINE=integratorcp] CONFIG_FPU (y)
|
---|
368 |
|
---|
369 |
|
---|
370 | ## Kernel features options
|
---|
371 |
|
---|
372 | % Support for SMP
|
---|
373 | ! [(PLATFORM=ia32&PROCESSOR!=athlon_xp)|PLATFORM=amd64|PLATFORM=sparc64|PLATFORM=ia64|(PLATFORM=mips32&MACHINE=msim)|(PLATFORM=mips64&MACHINE=msim)|PLATFORM=abs32le] CONFIG_SMP (y/n)
|
---|
374 |
|
---|
375 | % Debug build
|
---|
376 | ! CONFIG_DEBUG (y/n)
|
---|
377 |
|
---|
378 | % Deadlock detection support for spinlocks
|
---|
379 | ! [CONFIG_DEBUG=y&CONFIG_SMP=y] CONFIG_DEBUG_SPINLOCK (y/n)
|
---|
380 |
|
---|
381 | % Lazy FPU context switching
|
---|
382 | ! [CONFIG_FPU=y] CONFIG_FPU_LAZY (y/n)
|
---|
383 |
|
---|
384 | % Use VHPT
|
---|
385 | ! [PLATFORM=ia64] CONFIG_VHPT (n/y)
|
---|
386 |
|
---|
387 | % Use TSB
|
---|
388 | ! [PLATFORM=sparc64] CONFIG_TSB (y/n)
|
---|
389 |
|
---|
390 | % IO SAPIC on default address support
|
---|
391 | ! [PLATFORM=ia64&MACHINE!=ski] CONFIG_IOSAPIC (y/n)
|
---|
392 |
|
---|
393 | % Virtually indexed D-cache support
|
---|
394 | ! [PLATFORM=sparc64] CONFIG_VIRT_IDX_DCACHE (y/n)
|
---|
395 |
|
---|
396 | % Simics SMP Hack
|
---|
397 | ! [PROCESSOR=sun4v&CONFIG_SMP=y] CONFIG_SIMICS_SMP_HACK (n/y)
|
---|
398 |
|
---|
399 | % Support for userspace debuggers
|
---|
400 | ! CONFIG_UDEBUG (y/n)
|
---|
401 |
|
---|
402 | % Kernel console support
|
---|
403 | ! CONFIG_KCONSOLE (y/n)
|
---|
404 |
|
---|
405 | % Kernel symbol information
|
---|
406 | ! CONFIG_SYMTAB (y/n)
|
---|
407 |
|
---|
408 | % Detailed kernel logging
|
---|
409 | ! CONFIG_LOG (n/y)
|
---|
410 |
|
---|
411 | % Kernel function tracing
|
---|
412 | ! CONFIG_TRACE (n/y)
|
---|
413 |
|
---|
414 | % Compile kernel tests
|
---|
415 | ! CONFIG_TEST (y/n)
|
---|
416 |
|
---|
417 | % Use link-time optimization
|
---|
418 | ! [COMPILER=gcc_cross|COMPILER=gcc_native] CONFIG_LTO (n/y)
|
---|
419 |
|
---|
420 |
|
---|
421 | ## Hardware support
|
---|
422 |
|
---|
423 | % Input device class
|
---|
424 | @ "generic" Keyboard or serial line
|
---|
425 | ! [PLATFORM=arm32&MACHINE=integratorcp] CONFIG_HID_IN (choice)
|
---|
426 |
|
---|
427 | % Input device class
|
---|
428 | @ "generic" Keyboard or serial line
|
---|
429 | @ "none" No input device
|
---|
430 | ! [PLATFORM=ia32|PLATFORM=amd64|PLATFORM=mips32|PLATFORM=mips64|PLATFORM=ppc32|PLATFORM=sparc64] CONFIG_HID_IN (choice)
|
---|
431 |
|
---|
432 | % Input device class
|
---|
433 | @ "generic" Keyboard or serial line
|
---|
434 | @ "keyboard" Keyboard
|
---|
435 | @ "serial" Serial line
|
---|
436 | @ "none" No input device
|
---|
437 | ! [PLATFORM=ia64&MACHINE=i460GX] CONFIG_HID_IN (choice)
|
---|
438 |
|
---|
439 | % Output device class
|
---|
440 | @ "generic" Monitor or serial line
|
---|
441 | ! [PLATFORM=arm32&(MACHINE=gta02|MACHINE=integratorcp|MACHINE=beagleboardxm)] CONFIG_HID_OUT (choice)
|
---|
442 |
|
---|
443 | % Output device class
|
---|
444 | @ "generic" Monitor or serial line
|
---|
445 | @ "none" No output device
|
---|
446 | ! [PLATFORM=ia32|PLATFORM=amd64|PLATFORM=sparc64|PLATFORM=ppc32|(PLATFORM=ia64&MACHINE=i460GX)|(PLATFORM=mips32&(MACHINE=msim|MACHINE=bmalta|MACHINE=lmalta))|(PLATFORM=mips64&MACHINE=msim)] CONFIG_HID_OUT (choice)
|
---|
447 |
|
---|
448 | % Output device class
|
---|
449 | @ "generic" Monitor or serial line
|
---|
450 | @ "monitor" Monitor
|
---|
451 | @ "serial" Serial line
|
---|
452 | @ "none" No output device
|
---|
453 | ! [PLATFORM=mips32&(MACHINE=bgxemul|MACHINE=lgxemul)] CONFIG_HID_OUT (choice)
|
---|
454 |
|
---|
455 | % PC keyboard support
|
---|
456 | ! [CONFIG_HID_IN=generic&(PLATFORM=ia32|PLATFORM=amd64)] CONFIG_PC_KBD (y/n)
|
---|
457 |
|
---|
458 | % PC keyboard support
|
---|
459 | ! [(CONFIG_HID_IN=generic|CONFIG_HID_IN=keyboard)&PLATFORM=ia64&MACHINE=i460GX] CONFIG_PC_KBD (y/n)
|
---|
460 |
|
---|
461 | % PC keyboard support
|
---|
462 | ! [(CONFIG_HID_IN=generic|CONFIG_HID_IN=keyboard)&PLATFORM=arm32&MACHINE=integratorcp] CONFIG_PC_KBD (y/n)
|
---|
463 |
|
---|
464 | % Support for msim/GXemul keyboard
|
---|
465 | ! [CONFIG_HID_IN=generic&(PLATFORM=mips32|PLATFORM=mips64)] CONFIG_MIPS_KBD (y/n)
|
---|
466 |
|
---|
467 | % Support for msim/GXemul printer
|
---|
468 | ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=serial)&(PLATFORM=mips32|PLATFORM=mips64)] CONFIG_MIPS_PRN (y/n)
|
---|
469 |
|
---|
470 | % Support for VIA CUDA controller
|
---|
471 | ! [CONFIG_HID_IN=generic&PLATFORM=ppc32] CONFIG_VIA_CUDA (y/n)
|
---|
472 |
|
---|
473 | % Support for NS16550 controller
|
---|
474 | ! [(CONFIG_HID_IN=generic|CONFIG_HID_IN=keyboard)&PLATFORM=sparc64&MACHINE=generic] CONFIG_NS16550 (y/n)
|
---|
475 |
|
---|
476 | % Support for NS16550 controller
|
---|
477 | ! [(CONFIG_HID_IN=generic|CONFIG_HID_IN=serial)&PLATFORM=ia64&MACHINE=i460GX] CONFIG_NS16550 (y/n)
|
---|
478 |
|
---|
479 | % Support for ARM926 on-chip UART
|
---|
480 | ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=serial)&PLATFORM=arm32&MACHINE=integratorcp] CONFIG_ARM926_UART (y/n)
|
---|
481 |
|
---|
482 | % Support for Samsung S3C24XX on-chip UART
|
---|
483 | ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=serial)&PLATFORM=arm32&MACHINE=gta02] CONFIG_S3C24XX_UART (y/n)
|
---|
484 |
|
---|
485 | % Support for Samsung S3C24XX on-chip interrupt controller
|
---|
486 | ! [PLATFORM=arm32&MACHINE=gta02] CONFIG_S3C24XX_IRQC (y)
|
---|
487 |
|
---|
488 | % Support for TI AMDM37X on-chip UART
|
---|
489 | ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=serial)&PLATFORM=arm32&MACHINE=beagleboardxm] CONFIG_AMDM37X_UART (y/n)
|
---|
490 |
|
---|
491 | % Support for i8042 controller
|
---|
492 | ! [CONFIG_PC_KBD=y] CONFIG_I8042 (y)
|
---|
493 |
|
---|
494 | % Support for pl050 controller
|
---|
495 | ! [CONFIG_HID_IN=generic&PLATFORM=arm32&MACHINE=integratorcp] CONFIG_PL050 (y)
|
---|
496 |
|
---|
497 | % Sun keyboard support
|
---|
498 | ! [(CONFIG_HID_IN=generic|CONFIG_HID_IN=keyboard)&PLATFORM=sparc64&MACHINE=generic&CONFIG_NS16550=y] CONFIG_SUN_KBD (y)
|
---|
499 |
|
---|
500 | % Macintosh ADB keyboard support
|
---|
501 | ! [(CONFIG_HID_IN=generic|CONFIG_HID_IN=keyboard)&PLATFORM=ppc32&(CONFIG_VIA_CUDA=y)] CONFIG_MAC_KBD (y)
|
---|
502 |
|
---|
503 | % Dummy serial line input
|
---|
504 | ! [CONFIG_MIPS_KBD=y|CONFIG_ARM_KBD=y] CONFIG_DSRLNIN (y)
|
---|
505 |
|
---|
506 | % Dummy serial line output
|
---|
507 | ! [CONFIG_MIPS_PRN=y|CONFIG_ARM_PRN=y] CONFIG_DSRLNOUT (y)
|
---|
508 |
|
---|
509 | % Serial line input module
|
---|
510 | ! [CONFIG_DSRLNIN=y|(PLATFORM=arm32&MACHINE=gta02)|(PLATFORM=arm32&MACHINE=integratorcp&CONFIG_ARM926_UART=y)|(PLATFORM=arm32&MACHINE=beagleboardxm&CONFIG_AMDM37X_UART=y)|(PLATFORM=ia64&MACHINE=i460GX&CONFIG_NS16550=y)|(PLATFORM=ia64&MACHINE=ski)|(PLATFORM=sparc64&PROCESSOR=sun4v)] CONFIG_SRLN (y)
|
---|
511 |
|
---|
512 | % EGA support
|
---|
513 | ! [CONFIG_HID_OUT=generic&(PLATFORM=ia32|PLATFORM=amd64)] CONFIG_EGA (y/n)
|
---|
514 |
|
---|
515 | % EGA support
|
---|
516 | ! [CONFIG_HID_OUT=generic&PLATFORM=ia64&MACHINE=i460GX] CONFIG_EGA (y/n)
|
---|
517 |
|
---|
518 | % Framebuffer support
|
---|
519 | ! [CONFIG_HID_OUT=generic&(PLATFORM=ia32|PLATFORM=amd64|PLATFORM=ppc32)] CONFIG_FB (y/n)
|
---|
520 |
|
---|
521 | % Framebuffer support
|
---|
522 | ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=monitor)&PLATFORM=mips32&(MACHINE=lgxemul|MACHINE=bgxemul)] CONFIG_FB (y/n)
|
---|
523 |
|
---|
524 | % Framebuffer support
|
---|
525 | ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=monitor)&PLATFORM=arm32] CONFIG_FB (y/n)
|
---|
526 |
|
---|
527 | % Framebuffer support
|
---|
528 | ! [(CONFIG_HID_OUT=generic|CONFIG_HID_OUT=monitor)&PLATFORM=sparc64&MACHINE=generic] CONFIG_FB (y/n)
|
---|
529 |
|
---|
530 | % Default framebuffer mode
|
---|
531 | @ "640x480"
|
---|
532 | @ "800x600"
|
---|
533 | @ "1024x768"
|
---|
534 | @ "1152x720"
|
---|
535 | @ "1152x864"
|
---|
536 | @ "1280x720"
|
---|
537 | @ "1280x800"
|
---|
538 | @ "1280x960"
|
---|
539 | @ "1280x1024"
|
---|
540 | @ "1400x1050"
|
---|
541 | @ "1440x900"
|
---|
542 | @ "1440x1050"
|
---|
543 | @ "1600x1200"
|
---|
544 | @ "1920x1080"
|
---|
545 | @ "1920x1200"
|
---|
546 | ! [(PLATFORM=ia32|PLATFORM=amd64|MACHINE=beagleboardxm)&CONFIG_HID_OUT!=none&CONFIG_FB=y] CONFIG_BFB_MODE (choice)
|
---|
547 |
|
---|
548 | % Default framebuffer depth
|
---|
549 | @ "8"
|
---|
550 | @ "16"
|
---|
551 | @ "24"
|
---|
552 | ! [(PLATFORM=ia32|PLATFORM=amd64|MACHINE=beagleboardxm)&CONFIG_HID_OUT!=none&CONFIG_FB=y] CONFIG_BFB_BPP (choice)
|
---|
553 |
|
---|
554 | % Start AP processors by the loader
|
---|
555 | ! [PLATFORM=sparc64&CONFIG_SMP=y] CONFIG_AP (y/n)
|
---|
556 |
|
---|
557 | % Dynamic linking support
|
---|
558 | ! [PLATFORM=ia32] CONFIG_RTLD (n/y)
|
---|
559 | ! [PLATFORM=abs32le|PLATFORM=amd64|PLATFORM=arm32|PLATFORM=ia64|PLATFORM=mips32|PLATFORM=ppc32|PLATFORM=sparc64] CONFIG_RTLD (n)
|
---|
560 |
|
---|
561 | % Build shared libraries
|
---|
562 | ! [CONFIG_RTLD=y] CONFIG_BUILD_SHARED_LIBS (n/y)
|
---|
563 | ! [CONFIG_RTLD=n] CONFIG_BUILD_SHARED_LIBS (n)
|
---|
564 |
|
---|
565 | % Link against shared libraries
|
---|
566 | ! [CONFIG_BUILD_SHARED_LIBS=y] CONFIG_USE_SHARED_LIBS (n/y)
|
---|
567 | ! [CONFIG_BUILD_SHARED_LIBS=n] CONFIG_USE_SHARED_LIBS (n)
|
---|
568 |
|
---|
569 | % Launch (devman) test drivers
|
---|
570 | ! [CONFIG_DEBUG=y] CONFIG_TEST_DRIVERS (n/y)
|
---|
571 |
|
---|
572 | % Load disk drivers on startup
|
---|
573 | ! CONFIG_START_BD (n/y)
|
---|
574 |
|
---|
575 | % Mount /data on startup
|
---|
576 | ! [CONFIG_START_BD=y] CONFIG_MOUNT_DATA (n/y)
|
---|
577 |
|
---|
578 | % Write core files
|
---|
579 | ! CONFIG_WRITE_CORE_FILES (n/y)
|
---|
580 |
|
---|
581 | % Include development files (headers, libraries)
|
---|
582 | ! CONFIG_DEVEL_FILES (n/y)
|
---|
583 |
|
---|
584 | % Strip binaries
|
---|
585 | ! CONFIG_STRIP_BINARIES (n/y)
|
---|
586 |
|
---|
587 | % Optimize for size
|
---|
588 | ! CONFIG_OPTIMIZE_FOR_SIZE (n/y)
|
---|
589 |
|
---|
590 | % Barebone build with essential binaries only
|
---|
591 | ! CONFIG_BAREBONE (n/y)
|
---|
592 |
|
---|
593 | % Build pcc binaries
|
---|
594 | ! CONFIG_PCC (n/y)
|
---|
595 |
|
---|
596 | % Build binutils binaries
|
---|
597 | ! CONFIG_BINUTILS (n/y)
|
---|
598 |
|
---|
599 | % Build MSIM binary
|
---|
600 | ! CONFIG_MSIM (n/y)
|
---|
601 |
|
---|
602 | % Line debugging information
|
---|
603 | ! [CONFIG_STRIP_BINARIES!=y] CONFIG_LINE_DEBUG (n/y)
|
---|
604 |
|
---|
605 | # USB settings
|
---|
606 |
|
---|
607 | % Start virtual USB host controller
|
---|
608 | ! CONFIG_RUN_VIRTUAL_USB_HC (n/y)
|
---|
609 |
|
---|
610 | % OHCI root hub port power switching
|
---|
611 | @ "no" All root hub ports are always powered.
|
---|
612 | @ "ganged" Root hub ports are all powered or all off.
|
---|
613 | @ "per_port" Powered status of every root hub port is independent.
|
---|
614 | ! [PLATFORM=ia32|PLATFORM=amd64|PLATFORM=ppc32] OHCI_POWER_SWITCH (choice)
|
---|
615 |
|
---|
616 | % GRUB boot loader architecture
|
---|
617 | @ "pc" GRUB for PC
|
---|
618 | @ "efi" GRUB for UEFI
|
---|
619 | ! [PLATFORM=ia32|PLATFORM=amd64] GRUB_ARCH (choice)
|
---|
620 |
|
---|
621 | % uImage OS type
|
---|
622 | @ "2" NetBSD stage 2 boot loader
|
---|
623 | ! [PLATFORM=arm32&MACHINE=beagleboardxm] UIMAGE_OS (choice)
|
---|
624 |
|
---|
625 | % uImage OS type
|
---|
626 | @ "5" Linux kernel
|
---|
627 | ! [PLATFORM=arm32&MACHINE!=beagleboardxm] UIMAGE_OS (choice)
|
---|