blob: b202b8277a266fbf761c6c7175fd142a33c4b350 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001config MMU
2 bool
3 default y
4
Christoph Lameter66701b12007-02-10 01:43:09 -08005config ZONE_DMA
6 bool
7 default y
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009config RWSEM_GENERIC_SPINLOCK
10 bool
11 default y
12
13config RWSEM_XCHGADD_ALGORITHM
14 bool
15
David Howellsf0d1b0b2006-12-08 02:37:49 -080016config ARCH_HAS_ILOG2_U32
17 bool
18 default n
19
20config ARCH_HAS_ILOG2_U64
21 bool
22 default n
23
Akinobu Mitae9f26df2006-03-26 01:39:21 -080024config GENERIC_HWEIGHT
25 bool
26 default y
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028config GENERIC_CALIBRATE_DELAY
29 bool
30 default y
31
Uwe Kleine-Königce816fa2014-04-07 15:39:19 -070032config NO_IOPORT_MAP
Al Viro5ea81762007-02-11 15:41:31 +000033 def_bool y
34
Jesper Nilsson923dd2a2007-12-05 18:10:36 +010035config FORCE_MAX_ZONEORDER
36 int
37 default 6
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039config CRIS
40 bool
41 default y
Sam Ravnborgec7748b2008-02-09 10:46:40 +010042 select HAVE_IDE
Cong Wang4c9c6a12012-05-29 15:06:15 -070043 select GENERIC_ATOMIC64
Catalin Marinasaf1839e2012-10-08 16:28:08 -070044 select HAVE_UID16
Stephen Rothwell4febd952013-03-07 15:48:16 +110045 select VIRT_TO_BUS
Will Deaconc1d7e012012-07-30 14:42:46 -070046 select ARCH_WANT_IPC_PARSE_VERSION
Thomas Gleixner15825a52011-03-17 13:39:19 +010047 select GENERIC_IRQ_SHOW
Michael S. Tsirkin4673ca82011-11-24 14:54:28 +020048 select GENERIC_IOMAP
Anna-Maria Gleixner5227b632012-05-18 16:45:46 +000049 select GENERIC_CMOS_UPDATE
David Howells786d35d2012-09-28 14:31:03 +093050 select MODULES_USE_ELF_RELA
Al Viro27d892f2012-10-26 15:15:13 -040051 select CLONE_BACKWARDS2
Al Viro86df89a2012-12-25 16:28:27 -050052 select OLD_SIGSUSPEND
Al Viroeb2f2562012-12-25 19:30:53 -050053 select OLD_SIGACTION
Rabin Vincent8fda64c2015-02-05 21:20:26 +010054 select ARCH_REQUIRE_GPIOLIB
Rabin Vincent43f70712015-02-08 16:15:19 +010055 select IRQ_DOMAIN if ETRAX_ARCH_V32
Rabin Vincenta9f75ac2015-02-08 16:14:06 +010056 select OF if ETRAX_ARCH_V32
57 select OF_EARLY_FLATTREE if ETRAX_ARCH_V32
Rabin Vincentedfb6d52015-03-09 18:48:25 +010058 select CLKSRC_MMIO if ETRAX_ARCH_V32
Rabin Vincented9fd3f2015-03-08 16:29:12 +010059 select GENERIC_CLOCKEVENTS if ETRAX_ARCH_V32
Rabin Vincentd3dad472015-03-09 18:51:31 +010060 select GENERIC_SCHED_CLOCK if ETRAX_ARCH_V32
Rabin Vincentf59625a2015-05-14 14:36:56 +020061 select HAVE_DEBUG_BUGVERBOSE if ETRAX_ARCH_V32
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
H. Peter Anvinbdc80782008-02-08 04:21:26 -080063config HZ
64 int
65 default 100
66
Jesper Nilssondd820942015-01-15 17:30:40 +010067config NR_CPUS
68 int
69 default "1"
70
Rabin Vincenta9f75ac2015-02-08 16:14:06 +010071config BUILTIN_DTB
72 string "DTB to build into the kernel image"
73 depends on OF
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075source "init/Kconfig"
76
Matt Helsleydc52ddc2008-10-18 20:27:21 -070077source "kernel/Kconfig.freezer"
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079menu "General setup"
80
81source "fs/Kconfig.binfmt"
82
83config ETRAX_CMDLINE
84 string "Kernel command line"
85 default "root=/dev/mtdblock3"
86 help
87 Pass additional commands to the kernel.
88
89config ETRAX_WATCHDOG
90 bool "Enable ETRAX watchdog"
91 help
92 Enable the built-in watchdog timer support on ETRAX based embedded
93 network computers.
94
95config ETRAX_WATCHDOG_NICE_DOGGY
96 bool "Disable watchdog during Oops printouts"
97 depends on ETRAX_WATCHDOG
98 help
99 By enabling this you make sure that the watchdog does not bite while
100 printing oopses. Recommended for development systems but not for
101 production releases.
102
103config ETRAX_FAST_TIMER
104 bool "Enable ETRAX fast timer API"
105 help
106 This options enables the API to a fast timer implementation using
107 timer1 to get sub jiffie resolution timers (primarily one-shot
108 timers).
109 This is needed if CONFIG_ETRAX_SERIAL_FAST_TIMER is enabled.
110
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100111config ETRAX_KMALLOCED_MODULES
112 bool "Enable module allocation with kmalloc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 help
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100114 Enable module allocation with kmalloc instead of vmalloc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100116source "kernel/Kconfig.preempt"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Dave Hansen3f22ab22005-06-23 00:07:43 -0700118source mm/Kconfig
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120endmenu
121
122menu "Hardware setup"
123
124choice
125 prompt "Processor type"
126 default ETRAX100LX
127
128config ETRAX100LX
129 bool "ETRAX-100LX-v1"
Jesper Nilsson60dbd662010-07-30 17:33:07 +0200130 select ARCH_USES_GETTIMEOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 help
132 Support version 1 of the ETRAX 100LX.
133
134config ETRAX100LX_V2
135 bool "ETRAX-100LX-v2"
Jesper Nilsson60dbd662010-07-30 17:33:07 +0200136 select ARCH_USES_GETTIMEOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 help
138 Support version 2 of the ETRAX 100LX.
139
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100140config ETRAXFS
141 bool "ETRAX-FS-V32"
142 help
143 Support CRIS V32.
144
145config CRIS_MACH_ARTPEC3
146 bool "ARTPEC-3"
147 help
148 Support Axis ARTPEC-3.
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150endchoice
151
152config ETRAX_ARCH_V10
153 bool
154 default y if ETRAX100LX || ETRAX100LX_V2
155 default n if !(ETRAX100LX || ETRAX100LX_V2)
Josh Triplettae797bd2014-04-07 15:39:04 -0700156 select TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100158config ETRAX_ARCH_V32
159 bool
160 default y if (ETRAXFS || CRIS_MACH_ARTPEC3)
161 default n if !(ETRAXFS || CRIS_MACH_ARTPEC3)
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163config ETRAX_DRAM_SIZE
164 int "DRAM size (dec, in MB)"
165 default "8"
166 help
167 Size of DRAM (decimal in MB) typically 2, 8 or 16.
168
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100169config ETRAX_VMEM_SIZE
170 int "Video memory size (dec, in MB)"
171 depends on ETRAX_ARCH_V32 && !ETRAXFS
172 default 8 if !ETRAXFS
173 help
174 Size of Video accessible memory (decimal, in MB).
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176config ETRAX_FLASH_BUSWIDTH
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100177 int "Buswidth of NOR flash in bytes"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 default "2"
179 help
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100180 Width in bytes of the NOR Flash bus (1, 2 or 4). Is usually 2.
181
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100182config ETRAX_FLASH1_SIZE
183 int "FLASH1 size (dec, in MB. 0 = Unknown)"
184 default "0"
185
186choice
187 prompt "Product debug-port"
188 default ETRAX_DEBUG_PORT0
189
190config ETRAX_DEBUG_PORT0
191 bool "Serial-0"
192 help
193 Choose a serial port for the ETRAX debug console. Default to
194 port 0.
195
196config ETRAX_DEBUG_PORT1
197 bool "Serial-1"
198 help
199 Use serial port 1 for the console.
200
201config ETRAX_DEBUG_PORT2
202 bool "Serial-2"
203 help
204 Use serial port 2 for the console.
205
206config ETRAX_DEBUG_PORT3
207 bool "Serial-3"
208 help
209 Use serial port 3 for the console.
210
211config ETRAX_DEBUG_PORT_NULL
212 bool "disabled"
213 help
214 Disable serial-port debugging.
215
216endchoice
217
218choice
219 prompt "Kernel GDB port"
220 depends on ETRAX_KGDB
221 default ETRAX_KGDB_PORT0
222 help
223 Choose a serial port for kernel debugging. NOTE: This port should
224 not be enabled under Drivers for built-in interfaces (as it has its
225 own initialization code) and should not be the same as the debug port.
226
227config ETRAX_KGDB_PORT0
228 bool "Serial-0"
229 help
230 Use serial port 0 for kernel debugging.
231
232config ETRAX_KGDB_PORT1
233 bool "Serial-1"
234 help
235 Use serial port 1 for kernel debugging.
236
237config ETRAX_KGDB_PORT2
238 bool "Serial-2"
239 help
240 Use serial port 2 for kernel debugging.
241
242config ETRAX_KGDB_PORT3
243 bool "Serial-3"
244 help
245 Use serial port 3 for kernel debugging.
246
247endchoice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249source arch/cris/arch-v10/Kconfig
Jesper Nilsson2d33d562008-02-04 22:30:31 -0800250source arch/cris/arch-v32/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252endmenu
253
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700254source "net/Kconfig"
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256# bring in ETRAX built-in drivers
257menu "Drivers for built-in interfaces"
Jesper Nilsson2d33d562008-02-04 22:30:31 -0800258source arch/cris/arch-v10/drivers/Kconfig
259source arch/cris/arch-v32/drivers/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Jesper Nilsson79e04fd2008-02-06 13:21:28 +0100261config ETRAX_AXISFLASHMAP
262 bool "Axis flash-map support"
263 select MTD
264 select MTD_CFI
265 select MTD_CFI_AMDSTD
266 select MTD_JEDECPROBE if ETRAX_ARCH_V32
Jesper Nilsson79e04fd2008-02-06 13:21:28 +0100267 select MTD_BLOCK
Jesper Nilsson79e04fd2008-02-06 13:21:28 +0100268 select MTD_COMPLEX_MAPPINGS
269 help
270 This option enables MTD mapping of flash devices. Needed to use
271 flash memories. If unsure, say Y.
272
Jesper Nilssonc974a9e2008-01-21 11:44:11 +0100273config ETRAX_SYNCHRONOUS_SERIAL
274 bool "Synchronous serial-port support"
275 help
276 Select this to enable the synchronous serial port driver.
277
278config ETRAX_SYNCHRONOUS_SERIAL_PORT0
279 bool "Synchronous serial port 0 enabled"
280 depends on ETRAX_SYNCHRONOUS_SERIAL
281 help
282 Enabled synchronous serial port 0.
283
284config ETRAX_SYNCHRONOUS_SERIAL0_DMA
285 bool "Enable DMA on synchronous serial port 0."
286 depends on ETRAX_SYNCHRONOUS_SERIAL_PORT0
287 help
288 A synchronous serial port can run in manual or DMA mode.
289 Selecting this option will make it run in DMA mode.
290
291config ETRAX_SYNCHRONOUS_SERIAL_PORT1
292 bool "Synchronous serial port 1 enabled"
293 depends on ETRAX_SYNCHRONOUS_SERIAL && (ETRAXFS || ETRAX_ARCH_V10)
294 help
295 Enabled synchronous serial port 1.
296
297config ETRAX_SYNCHRONOUS_SERIAL1_DMA
298 bool "Enable DMA on synchronous serial port 1."
299 depends on ETRAX_SYNCHRONOUS_SERIAL_PORT1
300 help
301 A synchronous serial port can run in manual or DMA mode.
302 Selecting this option will make it run in DMA mode.
303
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100304choice
305 prompt "Network LED behavior"
306 depends on ETRAX_ETHERNET
307 default ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
308
309config ETRAX_NETWORK_LED_ON_WHEN_LINK
310 bool "LED_on_when_link"
311 help
312 Selecting LED_on_when_link will light the LED when there is a
313 connection and will flash off when there is activity.
314
315 Selecting LED_on_when_activity will light the LED only when
316 there is activity.
317
318 This setting will also affect the behaviour of other activity LEDs
319 e.g. Bluetooth.
320
321config ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
322 bool "LED_on_when_activity"
323 help
324 Selecting LED_on_when_link will light the LED when there is a
325 connection and will flash off when there is activity.
326
327 Selecting LED_on_when_activity will light the LED only when
328 there is activity.
329
330 This setting will also affect the behaviour of other activity LEDs
331 e.g. Bluetooth.
332
333endchoice
334
335choice
336 prompt "Ser0 DMA out channel"
337 depends on ETRAX_SERIAL_PORT0
338 default ETRAX_SERIAL_PORT0_DMA6_OUT if ETRAX_ARCH_V32
339 default ETRAX_SERIAL_PORT0_NO_DMA_OUT if ETRAX_ARCH_V10
340
341config ETRAX_SERIAL_PORT0_NO_DMA_OUT
342 bool "Ser0 uses no DMA for output"
343 help
344 Do not use DMA for ser0 output.
345
346config ETRAX_SERIAL_PORT0_DMA6_OUT
347 bool "Ser0 uses DMA6 for output"
348 depends on ETRAXFS
349 help
350 Enables the DMA6 output channel for ser0 (ttyS0).
351 If you do not enable DMA, an interrupt for each character will be
352 used when transmitting data.
353 Normally you want to use DMA, unless you use the DMA channel for
354 something else.
355
356config ETRAX_SERIAL_PORT0_DMA0_OUT
357 bool "Ser0 uses DMA0 for output"
358 depends on CRIS_MACH_ARTPEC3
359 help
360 Enables the DMA0 output channel for ser0 (ttyS0).
361 If you do not enable DMA, an interrupt for each character will be
362 used when transmitting data.
363 Normally you want to use DMA, unless you use the DMA channel for
364 something else.
365
366endchoice
367
368choice
369 prompt "Ser0 DMA in channel "
370 depends on ETRAX_SERIAL_PORT0
371 default ETRAX_SERIAL_PORT0_NO_DMA_IN if ETRAX_ARCH_V32
372 default ETRAX_SERIAL_PORT0_DMA7_IN if ETRAX_ARCH_V10
373 help
374 What DMA channel to use for ser0.
375
376config ETRAX_SERIAL_PORT0_NO_DMA_IN
377 bool "Ser0 uses no DMA for input"
378 help
379 Do not use DMA for ser0 input.
380
381config ETRAX_SERIAL_PORT0_DMA7_IN
382 bool "Ser0 uses DMA7 for input"
383 depends on ETRAXFS
384 help
385 Enables the DMA7 input channel for ser0 (ttyS0).
386 If you do not enable DMA, an interrupt for each character will be
387 used when receiving data.
388 Normally you want to use DMA, unless you use the DMA channel for
389 something else.
390
391config ETRAX_SERIAL_PORT0_DMA1_IN
392 bool "Ser0 uses DMA1 for input"
393 depends on CRIS_MACH_ARTPEC3
394 help
395 Enables the DMA1 input channel for ser0 (ttyS0).
396 If you do not enable DMA, an interrupt for each character will be
Matt LaPlante692105b2009-01-26 11:12:25 +0100397 used when receiving data.
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100398 Normally you want to use DMA, unless you use the DMA channel for
399 something else.
400
401endchoice
402
403choice
404 prompt "Ser1 DMA in channel "
405 depends on ETRAX_SERIAL_PORT1
406 default ETRAX_SERIAL_PORT1_NO_DMA_IN if ETRAX_ARCH_V32
407 default ETRAX_SERIAL_PORT1_DMA9_IN if ETRAX_ARCH_V10
408 help
409 What DMA channel to use for ser1.
410
411config ETRAX_SERIAL_PORT1_NO_DMA_IN
412 bool "Ser1 uses no DMA for input"
413 help
414 Do not use DMA for ser1 input.
415
416config ETRAX_SERIAL_PORT1_DMA5_IN
417 bool "Ser1 uses DMA5 for input"
418 depends on ETRAX_ARCH_V32
419 help
420 Enables the DMA5 input channel for ser1 (ttyS1).
421 If you do not enable DMA, an interrupt for each character will be
422 used when receiving data.
423 Normally you want this on, unless you use the DMA channel for
424 something else.
425
426config ETRAX_SERIAL_PORT1_DMA9_IN
427 depends on ETRAX_ARCH_V10
428 bool "Ser1 uses DMA9 for input"
429
430endchoice
431
432
433choice
434 prompt "Ser1 DMA out channel"
435 depends on ETRAX_SERIAL_PORT1
436 default ETRAX_SERIAL_PORT1_NO_DMA_OUT if ETRAX_ARCH_V32
437 default ETRAX_SERIAL_PORT1_DMA8_OUT if ETRAX_ARCH_V10
438 help
439 What DMA channel to use for ser1.
440
441config ETRAX_SERIAL_PORT1_NO_DMA_OUT
442 bool "Ser1 uses no DMA for output"
443 help
444 Do not use DMA for ser1 output.
445
446config ETRAX_SERIAL_PORT1_DMA8_OUT
447 depends on ETRAX_ARCH_V10
448 bool "Ser1 uses DMA8 for output"
449
450config ETRAX_SERIAL_PORT1_DMA4_OUT
451 depends on ETRAX_ARCH_V32
452 bool "Ser1 uses DMA4 for output"
453 help
454 Enables the DMA4 output channel for ser1 (ttyS1).
455 If you do not enable DMA, an interrupt for each character will be
456 used when transmitting data.
457 Normally you want this on, unless you use the DMA channel for
458 something else.
459
460endchoice
461
462choice
463 prompt "Ser2 DMA out channel"
464 depends on ETRAX_SERIAL_PORT2
465 default ETRAX_SERIAL_PORT2_NO_DMA_OUT if ETRAX_ARCH_V32
466 default ETRAX_SERIAL_PORT2_DMA2_OUT if ETRAX_ARCH_V10
467
468config ETRAX_SERIAL_PORT2_NO_DMA_OUT
469 bool "Ser2 uses no DMA for output"
470 help
471 Do not use DMA for ser2 output.
472
473config ETRAX_SERIAL_PORT2_DMA2_OUT
474 bool "Ser2 uses DMA2 for output"
475 depends on ETRAXFS || ETRAX_ARCH_V10
476 help
477 Enables the DMA2 output channel for ser2 (ttyS2).
478 If you do not enable DMA, an interrupt for each character will be
479 used when transmitting data.
480 Normally you want to use DMA, unless you use the DMA channel for
481 something else.
482
483config ETRAX_SERIAL_PORT2_DMA6_OUT
484 bool "Ser2 uses DMA6 for output"
485 depends on CRIS_MACH_ARTPEC3
486 help
487 Enables the DMA6 output channel for ser2 (ttyS2).
488 If you do not enable DMA, an interrupt for each character will be
489 used when transmitting data.
490 Normally you want to use DMA, unless you use the DMA channel for
491 something else.
492
493endchoice
494
495choice
496 prompt "Ser2 DMA in channel"
497 depends on ETRAX_SERIAL_PORT2
498 default ETRAX_SERIAL_PORT2_NO_DMA_IN if ETRAX_ARCH_V32
499 default ETRAX_SERIAL_PORT2_DMA3_IN if ETRAX_ARCH_V10
500 help
501 What DMA channel to use for ser2.
502
503config ETRAX_SERIAL_PORT2_NO_DMA_IN
504 bool "Ser2 uses no DMA for input"
505 help
506 Do not use DMA for ser2 input.
507
508config ETRAX_SERIAL_PORT2_DMA3_IN
509 bool "Ser2 uses DMA3 for input"
510 depends on ETRAXFS || ETRAX_ARCH_V10
511 help
512 Enables the DMA3 input channel for ser2 (ttyS2).
513 If you do not enable DMA, an interrupt for each character will be
514 used when receiving data.
515 Normally you want to use DMA, unless you use the DMA channel for
516 something else.
517
518config ETRAX_SERIAL_PORT2_DMA7_IN
519 bool "Ser2 uses DMA7 for input"
520 depends on CRIS_MACH_ARTPEC3
521 help
522 Enables the DMA7 input channel for ser2 (ttyS2).
523 If you do not enable DMA, an interrupt for each character will be
Matt LaPlante692105b2009-01-26 11:12:25 +0100524 used when receiving data.
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100525 Normally you want to use DMA, unless you use the DMA channel for
526 something else.
527
528endchoice
529
530choice
531 prompt "Ser3 DMA in channel"
532 depends on ETRAX_SERIAL_PORT3
533 default ETRAX_SERIAL_PORT3_NO_DMA_IN if ETRAX_ARCH_V32
534 default ETRAX_SERIAL_PORT3_DMA5_IN if ETRAX_ARCH_V10
535 help
536 What DMA channel to use for ser3.
537
538config ETRAX_SERIAL_PORT3_NO_DMA_IN
539 bool "Ser3 uses no DMA for input"
540 help
541 Do not use DMA for ser3 input.
542
543config ETRAX_SERIAL_PORT3_DMA5_IN
544 depends on ETRAX_ARCH_V10
545 bool "DMA 5"
546
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100547endchoice
548
549choice
550 prompt "Ser3 DMA out channel"
551 depends on ETRAX_SERIAL_PORT3
552 default ETRAX_SERIAL_PORT3_NO_DMA_OUT if ETRAX_ARCH_V32
553 default ETRAX_SERIAL_PORT3_DMA4_OUT if ETRAX_ARCH_V10
554
555config ETRAX_SERIAL_PORT3_NO_DMA_OUT
556 bool "Ser3 uses no DMA for output"
557 help
558 Do not use DMA for ser3 output.
559
560config ETRAX_SERIAL_PORT3_DMA4_OUT
561 depends on ETRAX_ARCH_V10
562 bool "DMA 4"
563
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100564endchoice
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566endmenu
567
Geert Uytterhoevenacf83632013-05-14 13:54:21 +0200568source "drivers/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570source "fs/Kconfig"
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572source "arch/cris/Kconfig.debug"
573
574source "security/Kconfig"
575
576source "crypto/Kconfig"
577
578source "lib/Kconfig"