blob: e7ba2d4bdd4f3bf2bde4b46c8138725f9ea197dd [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
Rabin Vincent444e0c22015-02-19 21:36:55 +010039config TRACE_IRQFLAGS_SUPPORT
40 depends on ETRAX_ARCH_V32
41 def_bool y
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043config CRIS
44 bool
45 default y
Sam Ravnborgec7748b2008-02-09 10:46:40 +010046 select HAVE_IDE
Cong Wang4c9c6a12012-05-29 15:06:15 -070047 select GENERIC_ATOMIC64
Catalin Marinasaf1839e2012-10-08 16:28:08 -070048 select HAVE_UID16
Stephen Rothwell4febd952013-03-07 15:48:16 +110049 select VIRT_TO_BUS
Will Deaconc1d7e012012-07-30 14:42:46 -070050 select ARCH_WANT_IPC_PARSE_VERSION
Thomas Gleixner15825a52011-03-17 13:39:19 +010051 select GENERIC_IRQ_SHOW
Michael S. Tsirkin4673ca82011-11-24 14:54:28 +020052 select GENERIC_IOMAP
Anna-Maria Gleixner5227b632012-05-18 16:45:46 +000053 select GENERIC_CMOS_UPDATE
David Howells786d35d2012-09-28 14:31:03 +093054 select MODULES_USE_ELF_RELA
Al Viro27d892f2012-10-26 15:15:13 -040055 select CLONE_BACKWARDS2
Al Viro86df89a2012-12-25 16:28:27 -050056 select OLD_SIGSUSPEND
Al Viroeb2f2562012-12-25 19:30:53 -050057 select OLD_SIGACTION
Rabin Vincent8fda64c2015-02-05 21:20:26 +010058 select ARCH_REQUIRE_GPIOLIB
Rabin Vincent43f70712015-02-08 16:15:19 +010059 select IRQ_DOMAIN if ETRAX_ARCH_V32
Rabin Vincenta9f75ac2015-02-08 16:14:06 +010060 select OF if ETRAX_ARCH_V32
61 select OF_EARLY_FLATTREE if ETRAX_ARCH_V32
Rabin Vincentedfb6d52015-03-09 18:48:25 +010062 select CLKSRC_MMIO if ETRAX_ARCH_V32
Rabin Vincented9fd3f2015-03-08 16:29:12 +010063 select GENERIC_CLOCKEVENTS if ETRAX_ARCH_V32
Rabin Vincentd3dad472015-03-09 18:51:31 +010064 select GENERIC_SCHED_CLOCK if ETRAX_ARCH_V32
Rabin Vincentf59625a2015-05-14 14:36:56 +020065 select HAVE_DEBUG_BUGVERBOSE if ETRAX_ARCH_V32
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
H. Peter Anvinbdc80782008-02-08 04:21:26 -080067config HZ
68 int
69 default 100
70
Jesper Nilssondd820942015-01-15 17:30:40 +010071config NR_CPUS
72 int
73 default "1"
74
Rabin Vincenta9f75ac2015-02-08 16:14:06 +010075config BUILTIN_DTB
76 string "DTB to build into the kernel image"
77 depends on OF
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079source "init/Kconfig"
80
Matt Helsleydc52ddc2008-10-18 20:27:21 -070081source "kernel/Kconfig.freezer"
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083menu "General setup"
84
85source "fs/Kconfig.binfmt"
86
87config ETRAX_CMDLINE
88 string "Kernel command line"
89 default "root=/dev/mtdblock3"
90 help
91 Pass additional commands to the kernel.
92
93config ETRAX_WATCHDOG
94 bool "Enable ETRAX watchdog"
95 help
96 Enable the built-in watchdog timer support on ETRAX based embedded
97 network computers.
98
99config ETRAX_WATCHDOG_NICE_DOGGY
100 bool "Disable watchdog during Oops printouts"
101 depends on ETRAX_WATCHDOG
102 help
103 By enabling this you make sure that the watchdog does not bite while
104 printing oopses. Recommended for development systems but not for
105 production releases.
106
107config ETRAX_FAST_TIMER
108 bool "Enable ETRAX fast timer API"
109 help
110 This options enables the API to a fast timer implementation using
111 timer1 to get sub jiffie resolution timers (primarily one-shot
112 timers).
113 This is needed if CONFIG_ETRAX_SERIAL_FAST_TIMER is enabled.
114
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100115config ETRAX_KMALLOCED_MODULES
116 bool "Enable module allocation with kmalloc"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 help
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100118 Enable module allocation with kmalloc instead of vmalloc.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100120source "kernel/Kconfig.preempt"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Dave Hansen3f22ab22005-06-23 00:07:43 -0700122source mm/Kconfig
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124endmenu
125
126menu "Hardware setup"
127
128choice
129 prompt "Processor type"
130 default ETRAX100LX
131
132config ETRAX100LX
133 bool "ETRAX-100LX-v1"
Jesper Nilsson60dbd662010-07-30 17:33:07 +0200134 select ARCH_USES_GETTIMEOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 help
136 Support version 1 of the ETRAX 100LX.
137
138config ETRAX100LX_V2
139 bool "ETRAX-100LX-v2"
Jesper Nilsson60dbd662010-07-30 17:33:07 +0200140 select ARCH_USES_GETTIMEOFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 help
142 Support version 2 of the ETRAX 100LX.
143
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100144config ETRAXFS
145 bool "ETRAX-FS-V32"
146 help
147 Support CRIS V32.
148
149config CRIS_MACH_ARTPEC3
150 bool "ARTPEC-3"
151 help
152 Support Axis ARTPEC-3.
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154endchoice
155
156config ETRAX_ARCH_V10
157 bool
158 default y if ETRAX100LX || ETRAX100LX_V2
159 default n if !(ETRAX100LX || ETRAX100LX_V2)
Josh Triplettae797bd2014-04-07 15:39:04 -0700160 select TTY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100162config ETRAX_ARCH_V32
163 bool
164 default y if (ETRAXFS || CRIS_MACH_ARTPEC3)
165 default n if !(ETRAXFS || CRIS_MACH_ARTPEC3)
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167config ETRAX_DRAM_SIZE
168 int "DRAM size (dec, in MB)"
169 default "8"
170 help
171 Size of DRAM (decimal in MB) typically 2, 8 or 16.
172
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100173config ETRAX_VMEM_SIZE
174 int "Video memory size (dec, in MB)"
175 depends on ETRAX_ARCH_V32 && !ETRAXFS
176 default 8 if !ETRAXFS
177 help
178 Size of Video accessible memory (decimal, in MB).
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180config ETRAX_FLASH_BUSWIDTH
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100181 int "Buswidth of NOR flash in bytes"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 default "2"
183 help
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100184 Width in bytes of the NOR Flash bus (1, 2 or 4). Is usually 2.
185
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100186config ETRAX_FLASH1_SIZE
187 int "FLASH1 size (dec, in MB. 0 = Unknown)"
188 default "0"
189
190choice
191 prompt "Product debug-port"
192 default ETRAX_DEBUG_PORT0
193
194config ETRAX_DEBUG_PORT0
195 bool "Serial-0"
196 help
197 Choose a serial port for the ETRAX debug console. Default to
198 port 0.
199
200config ETRAX_DEBUG_PORT1
201 bool "Serial-1"
202 help
203 Use serial port 1 for the console.
204
205config ETRAX_DEBUG_PORT2
206 bool "Serial-2"
207 help
208 Use serial port 2 for the console.
209
210config ETRAX_DEBUG_PORT3
211 bool "Serial-3"
212 help
213 Use serial port 3 for the console.
214
215config ETRAX_DEBUG_PORT_NULL
216 bool "disabled"
217 help
218 Disable serial-port debugging.
219
220endchoice
221
222choice
223 prompt "Kernel GDB port"
224 depends on ETRAX_KGDB
225 default ETRAX_KGDB_PORT0
226 help
227 Choose a serial port for kernel debugging. NOTE: This port should
228 not be enabled under Drivers for built-in interfaces (as it has its
229 own initialization code) and should not be the same as the debug port.
230
231config ETRAX_KGDB_PORT0
232 bool "Serial-0"
233 help
234 Use serial port 0 for kernel debugging.
235
236config ETRAX_KGDB_PORT1
237 bool "Serial-1"
238 help
239 Use serial port 1 for kernel debugging.
240
241config ETRAX_KGDB_PORT2
242 bool "Serial-2"
243 help
244 Use serial port 2 for kernel debugging.
245
246config ETRAX_KGDB_PORT3
247 bool "Serial-3"
248 help
249 Use serial port 3 for kernel debugging.
250
251endchoice
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253source arch/cris/arch-v10/Kconfig
Jesper Nilsson2d33d562008-02-04 22:30:31 -0800254source arch/cris/arch-v32/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256endmenu
257
Sam Ravnborgd5950b42005-07-11 21:03:49 -0700258source "net/Kconfig"
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260# bring in ETRAX built-in drivers
261menu "Drivers for built-in interfaces"
Jesper Nilsson2d33d562008-02-04 22:30:31 -0800262source arch/cris/arch-v10/drivers/Kconfig
263source arch/cris/arch-v32/drivers/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Jesper Nilsson79e04fd2008-02-06 13:21:28 +0100265config ETRAX_AXISFLASHMAP
266 bool "Axis flash-map support"
267 select MTD
268 select MTD_CFI
269 select MTD_CFI_AMDSTD
270 select MTD_JEDECPROBE if ETRAX_ARCH_V32
Jesper Nilsson79e04fd2008-02-06 13:21:28 +0100271 select MTD_BLOCK
Jesper Nilsson79e04fd2008-02-06 13:21:28 +0100272 select MTD_COMPLEX_MAPPINGS
273 help
274 This option enables MTD mapping of flash devices. Needed to use
275 flash memories. If unsure, say Y.
276
Jesper Nilssonc974a9e2008-01-21 11:44:11 +0100277config ETRAX_SYNCHRONOUS_SERIAL
278 bool "Synchronous serial-port support"
279 help
280 Select this to enable the synchronous serial port driver.
281
282config ETRAX_SYNCHRONOUS_SERIAL_PORT0
283 bool "Synchronous serial port 0 enabled"
284 depends on ETRAX_SYNCHRONOUS_SERIAL
285 help
286 Enabled synchronous serial port 0.
287
288config ETRAX_SYNCHRONOUS_SERIAL0_DMA
289 bool "Enable DMA on synchronous serial port 0."
290 depends on ETRAX_SYNCHRONOUS_SERIAL_PORT0
291 help
292 A synchronous serial port can run in manual or DMA mode.
293 Selecting this option will make it run in DMA mode.
294
295config ETRAX_SYNCHRONOUS_SERIAL_PORT1
296 bool "Synchronous serial port 1 enabled"
297 depends on ETRAX_SYNCHRONOUS_SERIAL && (ETRAXFS || ETRAX_ARCH_V10)
298 help
299 Enabled synchronous serial port 1.
300
301config ETRAX_SYNCHRONOUS_SERIAL1_DMA
302 bool "Enable DMA on synchronous serial port 1."
303 depends on ETRAX_SYNCHRONOUS_SERIAL_PORT1
304 help
305 A synchronous serial port can run in manual or DMA mode.
306 Selecting this option will make it run in DMA mode.
307
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100308choice
309 prompt "Network LED behavior"
310 depends on ETRAX_ETHERNET
311 default ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
312
313config ETRAX_NETWORK_LED_ON_WHEN_LINK
314 bool "LED_on_when_link"
315 help
316 Selecting LED_on_when_link will light the LED when there is a
317 connection and will flash off when there is activity.
318
319 Selecting LED_on_when_activity will light the LED only when
320 there is activity.
321
322 This setting will also affect the behaviour of other activity LEDs
323 e.g. Bluetooth.
324
325config ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
326 bool "LED_on_when_activity"
327 help
328 Selecting LED_on_when_link will light the LED when there is a
329 connection and will flash off when there is activity.
330
331 Selecting LED_on_when_activity will light the LED only when
332 there is activity.
333
334 This setting will also affect the behaviour of other activity LEDs
335 e.g. Bluetooth.
336
337endchoice
338
339choice
340 prompt "Ser0 DMA out channel"
341 depends on ETRAX_SERIAL_PORT0
342 default ETRAX_SERIAL_PORT0_DMA6_OUT if ETRAX_ARCH_V32
343 default ETRAX_SERIAL_PORT0_NO_DMA_OUT if ETRAX_ARCH_V10
344
345config ETRAX_SERIAL_PORT0_NO_DMA_OUT
346 bool "Ser0 uses no DMA for output"
347 help
348 Do not use DMA for ser0 output.
349
350config ETRAX_SERIAL_PORT0_DMA6_OUT
351 bool "Ser0 uses DMA6 for output"
352 depends on ETRAXFS
353 help
354 Enables the DMA6 output channel for ser0 (ttyS0).
355 If you do not enable DMA, an interrupt for each character will be
356 used when transmitting data.
357 Normally you want to use DMA, unless you use the DMA channel for
358 something else.
359
360config ETRAX_SERIAL_PORT0_DMA0_OUT
361 bool "Ser0 uses DMA0 for output"
362 depends on CRIS_MACH_ARTPEC3
363 help
364 Enables the DMA0 output channel for ser0 (ttyS0).
365 If you do not enable DMA, an interrupt for each character will be
366 used when transmitting data.
367 Normally you want to use DMA, unless you use the DMA channel for
368 something else.
369
370endchoice
371
372choice
373 prompt "Ser0 DMA in channel "
374 depends on ETRAX_SERIAL_PORT0
375 default ETRAX_SERIAL_PORT0_NO_DMA_IN if ETRAX_ARCH_V32
376 default ETRAX_SERIAL_PORT0_DMA7_IN if ETRAX_ARCH_V10
377 help
378 What DMA channel to use for ser0.
379
380config ETRAX_SERIAL_PORT0_NO_DMA_IN
381 bool "Ser0 uses no DMA for input"
382 help
383 Do not use DMA for ser0 input.
384
385config ETRAX_SERIAL_PORT0_DMA7_IN
386 bool "Ser0 uses DMA7 for input"
387 depends on ETRAXFS
388 help
389 Enables the DMA7 input channel for ser0 (ttyS0).
390 If you do not enable DMA, an interrupt for each character will be
391 used when receiving data.
392 Normally you want to use DMA, unless you use the DMA channel for
393 something else.
394
395config ETRAX_SERIAL_PORT0_DMA1_IN
396 bool "Ser0 uses DMA1 for input"
397 depends on CRIS_MACH_ARTPEC3
398 help
399 Enables the DMA1 input channel for ser0 (ttyS0).
400 If you do not enable DMA, an interrupt for each character will be
Matt LaPlante692105b2009-01-26 11:12:25 +0100401 used when receiving data.
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100402 Normally you want to use DMA, unless you use the DMA channel for
403 something else.
404
405endchoice
406
407choice
408 prompt "Ser1 DMA in channel "
409 depends on ETRAX_SERIAL_PORT1
410 default ETRAX_SERIAL_PORT1_NO_DMA_IN if ETRAX_ARCH_V32
411 default ETRAX_SERIAL_PORT1_DMA9_IN if ETRAX_ARCH_V10
412 help
413 What DMA channel to use for ser1.
414
415config ETRAX_SERIAL_PORT1_NO_DMA_IN
416 bool "Ser1 uses no DMA for input"
417 help
418 Do not use DMA for ser1 input.
419
420config ETRAX_SERIAL_PORT1_DMA5_IN
421 bool "Ser1 uses DMA5 for input"
422 depends on ETRAX_ARCH_V32
423 help
424 Enables the DMA5 input channel for ser1 (ttyS1).
425 If you do not enable DMA, an interrupt for each character will be
426 used when receiving data.
427 Normally you want this on, unless you use the DMA channel for
428 something else.
429
430config ETRAX_SERIAL_PORT1_DMA9_IN
431 depends on ETRAX_ARCH_V10
432 bool "Ser1 uses DMA9 for input"
433
434endchoice
435
436
437choice
438 prompt "Ser1 DMA out channel"
439 depends on ETRAX_SERIAL_PORT1
440 default ETRAX_SERIAL_PORT1_NO_DMA_OUT if ETRAX_ARCH_V32
441 default ETRAX_SERIAL_PORT1_DMA8_OUT if ETRAX_ARCH_V10
442 help
443 What DMA channel to use for ser1.
444
445config ETRAX_SERIAL_PORT1_NO_DMA_OUT
446 bool "Ser1 uses no DMA for output"
447 help
448 Do not use DMA for ser1 output.
449
450config ETRAX_SERIAL_PORT1_DMA8_OUT
451 depends on ETRAX_ARCH_V10
452 bool "Ser1 uses DMA8 for output"
453
454config ETRAX_SERIAL_PORT1_DMA4_OUT
455 depends on ETRAX_ARCH_V32
456 bool "Ser1 uses DMA4 for output"
457 help
458 Enables the DMA4 output channel for ser1 (ttyS1).
459 If you do not enable DMA, an interrupt for each character will be
460 used when transmitting data.
461 Normally you want this on, unless you use the DMA channel for
462 something else.
463
464endchoice
465
466choice
467 prompt "Ser2 DMA out channel"
468 depends on ETRAX_SERIAL_PORT2
469 default ETRAX_SERIAL_PORT2_NO_DMA_OUT if ETRAX_ARCH_V32
470 default ETRAX_SERIAL_PORT2_DMA2_OUT if ETRAX_ARCH_V10
471
472config ETRAX_SERIAL_PORT2_NO_DMA_OUT
473 bool "Ser2 uses no DMA for output"
474 help
475 Do not use DMA for ser2 output.
476
477config ETRAX_SERIAL_PORT2_DMA2_OUT
478 bool "Ser2 uses DMA2 for output"
479 depends on ETRAXFS || ETRAX_ARCH_V10
480 help
481 Enables the DMA2 output channel for ser2 (ttyS2).
482 If you do not enable DMA, an interrupt for each character will be
483 used when transmitting data.
484 Normally you want to use DMA, unless you use the DMA channel for
485 something else.
486
487config ETRAX_SERIAL_PORT2_DMA6_OUT
488 bool "Ser2 uses DMA6 for output"
489 depends on CRIS_MACH_ARTPEC3
490 help
491 Enables the DMA6 output channel for ser2 (ttyS2).
492 If you do not enable DMA, an interrupt for each character will be
493 used when transmitting data.
494 Normally you want to use DMA, unless you use the DMA channel for
495 something else.
496
497endchoice
498
499choice
500 prompt "Ser2 DMA in channel"
501 depends on ETRAX_SERIAL_PORT2
502 default ETRAX_SERIAL_PORT2_NO_DMA_IN if ETRAX_ARCH_V32
503 default ETRAX_SERIAL_PORT2_DMA3_IN if ETRAX_ARCH_V10
504 help
505 What DMA channel to use for ser2.
506
507config ETRAX_SERIAL_PORT2_NO_DMA_IN
508 bool "Ser2 uses no DMA for input"
509 help
510 Do not use DMA for ser2 input.
511
512config ETRAX_SERIAL_PORT2_DMA3_IN
513 bool "Ser2 uses DMA3 for input"
514 depends on ETRAXFS || ETRAX_ARCH_V10
515 help
516 Enables the DMA3 input channel for ser2 (ttyS2).
517 If you do not enable DMA, an interrupt for each character will be
518 used when receiving data.
519 Normally you want to use DMA, unless you use the DMA channel for
520 something else.
521
522config ETRAX_SERIAL_PORT2_DMA7_IN
523 bool "Ser2 uses DMA7 for input"
524 depends on CRIS_MACH_ARTPEC3
525 help
526 Enables the DMA7 input channel for ser2 (ttyS2).
527 If you do not enable DMA, an interrupt for each character will be
Matt LaPlante692105b2009-01-26 11:12:25 +0100528 used when receiving data.
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100529 Normally you want to use DMA, unless you use the DMA channel for
530 something else.
531
532endchoice
533
534choice
535 prompt "Ser3 DMA in channel"
536 depends on ETRAX_SERIAL_PORT3
537 default ETRAX_SERIAL_PORT3_NO_DMA_IN if ETRAX_ARCH_V32
538 default ETRAX_SERIAL_PORT3_DMA5_IN if ETRAX_ARCH_V10
539 help
540 What DMA channel to use for ser3.
541
542config ETRAX_SERIAL_PORT3_NO_DMA_IN
543 bool "Ser3 uses no DMA for input"
544 help
545 Do not use DMA for ser3 input.
546
547config ETRAX_SERIAL_PORT3_DMA5_IN
548 depends on ETRAX_ARCH_V10
549 bool "DMA 5"
550
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100551endchoice
552
553choice
554 prompt "Ser3 DMA out channel"
555 depends on ETRAX_SERIAL_PORT3
556 default ETRAX_SERIAL_PORT3_NO_DMA_OUT if ETRAX_ARCH_V32
557 default ETRAX_SERIAL_PORT3_DMA4_OUT if ETRAX_ARCH_V10
558
559config ETRAX_SERIAL_PORT3_NO_DMA_OUT
560 bool "Ser3 uses no DMA for output"
561 help
562 Do not use DMA for ser3 output.
563
564config ETRAX_SERIAL_PORT3_DMA4_OUT
565 depends on ETRAX_ARCH_V10
566 bool "DMA 4"
567
Jesper Nilsson923dd2a2007-12-05 18:10:36 +0100568endchoice
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570endmenu
571
Geert Uytterhoevenacf83632013-05-14 13:54:21 +0200572source "drivers/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574source "fs/Kconfig"
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576source "arch/cris/Kconfig.debug"
577
578source "security/Kconfig"
579
580source "crypto/Kconfig"
581
582source "lib/Kconfig"