Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the Configure script.
  4. #
  5. mainmenu "Linux/CRIS Kernel Configuration"
  6. config MMU
  7. bool
  8. default y
  9. config ZONE_DMA
  10. bool
  11. default y
  12. config RWSEM_GENERIC_SPINLOCK
  13. bool
  14. default y
  15. config RWSEM_XCHGADD_ALGORITHM
  16. bool
  17. config GENERIC_TIME
  18. def_bool y
  19. config ARCH_USES_GETTIMEOFFSET
  20. def_bool y
  21. config GENERIC_IOMAP
  22. bool
  23. default y
  24. config ARCH_HAS_ILOG2_U32
  25. bool
  26. default n
  27. config ARCH_HAS_ILOG2_U64
  28. bool
  29. default n
  30. config GENERIC_FIND_NEXT_BIT
  31. bool
  32. default y
  33. config GENERIC_HWEIGHT
  34. bool
  35. default y
  36. config GENERIC_CALIBRATE_DELAY
  37. bool
  38. default y
  39. config NO_IOPORT
  40. def_bool y
  41. config FORCE_MAX_ZONEORDER
  42. int
  43. default 6
  44. config CRIS
  45. bool
  46. default y
  47. select HAVE_IDE
  48. config HZ
  49. int
  50. default 100
  51. source "init/Kconfig"
  52. source "kernel/Kconfig.freezer"
  53. menu "General setup"
  54. source "fs/Kconfig.binfmt"
  55. config GENERIC_HARDIRQS
  56. bool
  57. default y
  58. config ETRAX_CMDLINE
  59. string "Kernel command line"
  60. default "root=/dev/mtdblock3"
  61. help
  62. Pass additional commands to the kernel.
  63. config ETRAX_WATCHDOG
  64. bool "Enable ETRAX watchdog"
  65. help
  66. Enable the built-in watchdog timer support on ETRAX based embedded
  67. network computers.
  68. config ETRAX_WATCHDOG_NICE_DOGGY
  69. bool "Disable watchdog during Oops printouts"
  70. depends on ETRAX_WATCHDOG
  71. help
  72. By enabling this you make sure that the watchdog does not bite while
  73. printing oopses. Recommended for development systems but not for
  74. production releases.
  75. config ETRAX_FAST_TIMER
  76. bool "Enable ETRAX fast timer API"
  77. help
  78. This options enables the API to a fast timer implementation using
  79. timer1 to get sub jiffie resolution timers (primarily one-shot
  80. timers).
  81. This is needed if CONFIG_ETRAX_SERIAL_FAST_TIMER is enabled.
  82. config ETRAX_KMALLOCED_MODULES
  83. bool "Enable module allocation with kmalloc"
  84. help
  85. Enable module allocation with kmalloc instead of vmalloc.
  86. config OOM_REBOOT
  87. bool "Enable reboot at out of memory"
  88. source "kernel/Kconfig.preempt"
  89. source mm/Kconfig
  90. endmenu
  91. menu "Hardware setup"
  92. choice
  93. prompt "Processor type"
  94. default ETRAX100LX
  95. config ETRAX100LX
  96. bool "ETRAX-100LX-v1"
  97. help
  98. Support version 1 of the ETRAX 100LX.
  99. config ETRAX100LX_V2
  100. bool "ETRAX-100LX-v2"
  101. help
  102. Support version 2 of the ETRAX 100LX.
  103. config SVINTO_SIM
  104. bool "ETRAX-100LX-for-xsim-simulator"
  105. help
  106. Support the xsim ETRAX Simulator.
  107. config ETRAXFS
  108. bool "ETRAX-FS-V32"
  109. help
  110. Support CRIS V32.
  111. config CRIS_MACH_ARTPEC3
  112. bool "ARTPEC-3"
  113. help
  114. Support Axis ARTPEC-3.
  115. endchoice
  116. config ETRAX_VCS_SIM
  117. bool "VCS Simulator"
  118. help
  119. Setup hardware to be run in the VCS simulator.
  120. config ETRAX_ARCH_V10
  121. bool
  122. default y if ETRAX100LX || ETRAX100LX_V2
  123. default n if !(ETRAX100LX || ETRAX100LX_V2)
  124. config ETRAX_ARCH_V32
  125. bool
  126. default y if (ETRAXFS || CRIS_MACH_ARTPEC3)
  127. default n if !(ETRAXFS || CRIS_MACH_ARTPEC3)
  128. config ETRAX_DRAM_SIZE
  129. int "DRAM size (dec, in MB)"
  130. default "8"
  131. help
  132. Size of DRAM (decimal in MB) typically 2, 8 or 16.
  133. config ETRAX_VMEM_SIZE
  134. int "Video memory size (dec, in MB)"
  135. depends on ETRAX_ARCH_V32 && !ETRAXFS
  136. default 8 if !ETRAXFS
  137. help
  138. Size of Video accessible memory (decimal, in MB).
  139. config ETRAX_FLASH_BUSWIDTH
  140. int "Buswidth of NOR flash in bytes"
  141. default "2"
  142. help
  143. Width in bytes of the NOR Flash bus (1, 2 or 4). Is usually 2.
  144. config ETRAX_NANDFLASH_BUSWIDTH
  145. int "Buswidth of NAND flash in bytes"
  146. default "1"
  147. help
  148. Width in bytes of the NAND flash (1 or 2).
  149. config ETRAX_FLASH1_SIZE
  150. int "FLASH1 size (dec, in MB. 0 = Unknown)"
  151. default "0"
  152. choice
  153. prompt "Product debug-port"
  154. default ETRAX_DEBUG_PORT0
  155. config ETRAX_DEBUG_PORT0
  156. bool "Serial-0"
  157. help
  158. Choose a serial port for the ETRAX debug console. Default to
  159. port 0.
  160. config ETRAX_DEBUG_PORT1
  161. bool "Serial-1"
  162. help
  163. Use serial port 1 for the console.
  164. config ETRAX_DEBUG_PORT2
  165. bool "Serial-2"
  166. help
  167. Use serial port 2 for the console.
  168. config ETRAX_DEBUG_PORT3
  169. bool "Serial-3"
  170. help
  171. Use serial port 3 for the console.
  172. config ETRAX_DEBUG_PORT_NULL
  173. bool "disabled"
  174. help
  175. Disable serial-port debugging.
  176. endchoice
  177. choice
  178. prompt "Kernel GDB port"
  179. depends on ETRAX_KGDB
  180. default ETRAX_KGDB_PORT0
  181. help
  182. Choose a serial port for kernel debugging. NOTE: This port should
  183. not be enabled under Drivers for built-in interfaces (as it has its
  184. own initialization code) and should not be the same as the debug port.
  185. config ETRAX_KGDB_PORT0
  186. bool "Serial-0"
  187. help
  188. Use serial port 0 for kernel debugging.
  189. config ETRAX_KGDB_PORT1
  190. bool "Serial-1"
  191. help
  192. Use serial port 1 for kernel debugging.
  193. config ETRAX_KGDB_PORT2
  194. bool "Serial-2"
  195. help
  196. Use serial port 2 for kernel debugging.
  197. config ETRAX_KGDB_PORT3
  198. bool "Serial-3"
  199. help
  200. Use serial port 3 for kernel debugging.
  201. endchoice
  202. source arch/cris/arch-v10/Kconfig
  203. source arch/cris/arch-v32/Kconfig
  204. endmenu
  205. source "net/Kconfig"
  206. # bring in ETRAX built-in drivers
  207. menu "Drivers for built-in interfaces"
  208. source arch/cris/arch-v10/drivers/Kconfig
  209. source arch/cris/arch-v32/drivers/Kconfig
  210. config ETRAX_AXISFLASHMAP
  211. bool "Axis flash-map support"
  212. select MTD
  213. select MTD_CFI
  214. select MTD_CFI_AMDSTD
  215. select MTD_JEDECPROBE if ETRAX_ARCH_V32
  216. select MTD_CHAR
  217. select MTD_BLOCK
  218. select MTD_PARTITIONS
  219. select MTD_CONCAT
  220. select MTD_COMPLEX_MAPPINGS
  221. help
  222. This option enables MTD mapping of flash devices. Needed to use
  223. flash memories. If unsure, say Y.
  224. config ETRAX_RTC
  225. bool "Real Time Clock support"
  226. depends on ETRAX_I2C
  227. help
  228. Enables drivers for the Real-Time Clock battery-backed chips on
  229. some products. The kernel reads the time when booting, and
  230. the date can be set using ioctl(fd, RTC_SET_TIME, &rt) with rt a
  231. rtc_time struct (see <file:include/asm-cris/rtc.h>) on the /dev/rtc
  232. device. You can check the time with cat /proc/rtc, but
  233. normal time reading should be done using libc function time and
  234. friends.
  235. choice
  236. prompt "RTC chip"
  237. depends on ETRAX_RTC
  238. default ETRAX_PCF8563 if ETRAX_ARCH_V32
  239. default ETRAX_DS1302 if ETRAX_ARCH_V10
  240. config ETRAX_DS1302
  241. depends on ETRAX_ARCH_V10
  242. bool "DS1302"
  243. help
  244. Enables the driver for the DS1302 Real-Time Clock battery-backed
  245. chip on some products.
  246. config ETRAX_PCF8563
  247. bool "PCF8563"
  248. help
  249. Enables the driver for the PCF8563 Real-Time Clock battery-backed
  250. chip on some products.
  251. endchoice
  252. config ETRAX_SYNCHRONOUS_SERIAL
  253. bool "Synchronous serial-port support"
  254. help
  255. Select this to enable the synchronous serial port driver.
  256. config ETRAX_SYNCHRONOUS_SERIAL_PORT0
  257. bool "Synchronous serial port 0 enabled"
  258. depends on ETRAX_SYNCHRONOUS_SERIAL
  259. help
  260. Enabled synchronous serial port 0.
  261. config ETRAX_SYNCHRONOUS_SERIAL0_DMA
  262. bool "Enable DMA on synchronous serial port 0."
  263. depends on ETRAX_SYNCHRONOUS_SERIAL_PORT0
  264. help
  265. A synchronous serial port can run in manual or DMA mode.
  266. Selecting this option will make it run in DMA mode.
  267. config ETRAX_SYNCHRONOUS_SERIAL_PORT1
  268. bool "Synchronous serial port 1 enabled"
  269. depends on ETRAX_SYNCHRONOUS_SERIAL && (ETRAXFS || ETRAX_ARCH_V10)
  270. help
  271. Enabled synchronous serial port 1.
  272. config ETRAX_SYNCHRONOUS_SERIAL1_DMA
  273. bool "Enable DMA on synchronous serial port 1."
  274. depends on ETRAX_SYNCHRONOUS_SERIAL_PORT1
  275. help
  276. A synchronous serial port can run in manual or DMA mode.
  277. Selecting this option will make it run in DMA mode.
  278. choice
  279. prompt "Network LED behavior"
  280. depends on ETRAX_ETHERNET
  281. default ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
  282. config ETRAX_NETWORK_LED_ON_WHEN_LINK
  283. bool "LED_on_when_link"
  284. help
  285. Selecting LED_on_when_link will light the LED when there is a
  286. connection and will flash off when there is activity.
  287. Selecting LED_on_when_activity will light the LED only when
  288. there is activity.
  289. This setting will also affect the behaviour of other activity LEDs
  290. e.g. Bluetooth.
  291. config ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
  292. bool "LED_on_when_activity"
  293. help
  294. Selecting LED_on_when_link will light the LED when there is a
  295. connection and will flash off when there is activity.
  296. Selecting LED_on_when_activity will light the LED only when
  297. there is activity.
  298. This setting will also affect the behaviour of other activity LEDs
  299. e.g. Bluetooth.
  300. endchoice
  301. choice
  302. prompt "Ser0 DMA out channel"
  303. depends on ETRAX_SERIAL_PORT0
  304. default ETRAX_SERIAL_PORT0_DMA6_OUT if ETRAX_ARCH_V32
  305. default ETRAX_SERIAL_PORT0_NO_DMA_OUT if ETRAX_ARCH_V10
  306. config ETRAX_SERIAL_PORT0_NO_DMA_OUT
  307. bool "Ser0 uses no DMA for output"
  308. help
  309. Do not use DMA for ser0 output.
  310. config ETRAX_SERIAL_PORT0_DMA6_OUT
  311. bool "Ser0 uses DMA6 for output"
  312. depends on ETRAXFS
  313. help
  314. Enables the DMA6 output channel for ser0 (ttyS0).
  315. If you do not enable DMA, an interrupt for each character will be
  316. used when transmitting data.
  317. Normally you want to use DMA, unless you use the DMA channel for
  318. something else.
  319. config ETRAX_SERIAL_PORT0_DMA0_OUT
  320. bool "Ser0 uses DMA0 for output"
  321. depends on CRIS_MACH_ARTPEC3
  322. help
  323. Enables the DMA0 output channel for ser0 (ttyS0).
  324. If you do not enable DMA, an interrupt for each character will be
  325. used when transmitting data.
  326. Normally you want to use DMA, unless you use the DMA channel for
  327. something else.
  328. endchoice
  329. choice
  330. prompt "Ser0 DMA in channel "
  331. depends on ETRAX_SERIAL_PORT0
  332. default ETRAX_SERIAL_PORT0_NO_DMA_IN if ETRAX_ARCH_V32
  333. default ETRAX_SERIAL_PORT0_DMA7_IN if ETRAX_ARCH_V10
  334. help
  335. What DMA channel to use for ser0.
  336. config ETRAX_SERIAL_PORT0_NO_DMA_IN
  337. bool "Ser0 uses no DMA for input"
  338. help
  339. Do not use DMA for ser0 input.
  340. config ETRAX_SERIAL_PORT0_DMA7_IN
  341. bool "Ser0 uses DMA7 for input"
  342. depends on ETRAXFS
  343. help
  344. Enables the DMA7 input channel for ser0 (ttyS0).
  345. If you do not enable DMA, an interrupt for each character will be
  346. used when receiving data.
  347. Normally you want to use DMA, unless you use the DMA channel for
  348. something else.
  349. config ETRAX_SERIAL_PORT0_DMA1_IN
  350. bool "Ser0 uses DMA1 for input"
  351. depends on CRIS_MACH_ARTPEC3
  352. help
  353. Enables the DMA1 input channel for ser0 (ttyS0).
  354. If you do not enable DMA, an interrupt for each character will be
  355. used when receiving data.
  356. Normally you want to use DMA, unless you use the DMA channel for
  357. something else.
  358. endchoice
  359. choice
  360. prompt "Ser1 DMA in channel "
  361. depends on ETRAX_SERIAL_PORT1
  362. default ETRAX_SERIAL_PORT1_NO_DMA_IN if ETRAX_ARCH_V32
  363. default ETRAX_SERIAL_PORT1_DMA9_IN if ETRAX_ARCH_V10
  364. help
  365. What DMA channel to use for ser1.
  366. config ETRAX_SERIAL_PORT1_NO_DMA_IN
  367. bool "Ser1 uses no DMA for input"
  368. help
  369. Do not use DMA for ser1 input.
  370. config ETRAX_SERIAL_PORT1_DMA5_IN
  371. bool "Ser1 uses DMA5 for input"
  372. depends on ETRAX_ARCH_V32
  373. help
  374. Enables the DMA5 input channel for ser1 (ttyS1).
  375. If you do not enable DMA, an interrupt for each character will be
  376. used when receiving data.
  377. Normally you want this on, unless you use the DMA channel for
  378. something else.
  379. config ETRAX_SERIAL_PORT1_DMA9_IN
  380. depends on ETRAX_ARCH_V10
  381. bool "Ser1 uses DMA9 for input"
  382. endchoice
  383. choice
  384. prompt "Ser1 DMA out channel"
  385. depends on ETRAX_SERIAL_PORT1
  386. default ETRAX_SERIAL_PORT1_NO_DMA_OUT if ETRAX_ARCH_V32
  387. default ETRAX_SERIAL_PORT1_DMA8_OUT if ETRAX_ARCH_V10
  388. help
  389. What DMA channel to use for ser1.
  390. config ETRAX_SERIAL_PORT1_NO_DMA_OUT
  391. bool "Ser1 uses no DMA for output"
  392. help
  393. Do not use DMA for ser1 output.
  394. config ETRAX_SERIAL_PORT1_DMA8_OUT
  395. depends on ETRAX_ARCH_V10
  396. bool "Ser1 uses DMA8 for output"
  397. config ETRAX_SERIAL_PORT1_DMA4_OUT
  398. depends on ETRAX_ARCH_V32
  399. bool "Ser1 uses DMA4 for output"
  400. help
  401. Enables the DMA4 output channel for ser1 (ttyS1).
  402. If you do not enable DMA, an interrupt for each character will be
  403. used when transmitting data.
  404. Normally you want this on, unless you use the DMA channel for
  405. something else.
  406. endchoice
  407. choice
  408. prompt "Ser2 DMA out channel"
  409. depends on ETRAX_SERIAL_PORT2
  410. default ETRAX_SERIAL_PORT2_NO_DMA_OUT if ETRAX_ARCH_V32
  411. default ETRAX_SERIAL_PORT2_DMA2_OUT if ETRAX_ARCH_V10
  412. config ETRAX_SERIAL_PORT2_NO_DMA_OUT
  413. bool "Ser2 uses no DMA for output"
  414. help
  415. Do not use DMA for ser2 output.
  416. config ETRAX_SERIAL_PORT2_DMA2_OUT
  417. bool "Ser2 uses DMA2 for output"
  418. depends on ETRAXFS || ETRAX_ARCH_V10
  419. help
  420. Enables the DMA2 output channel for ser2 (ttyS2).
  421. If you do not enable DMA, an interrupt for each character will be
  422. used when transmitting data.
  423. Normally you want to use DMA, unless you use the DMA channel for
  424. something else.
  425. config ETRAX_SERIAL_PORT2_DMA6_OUT
  426. bool "Ser2 uses DMA6 for output"
  427. depends on CRIS_MACH_ARTPEC3
  428. help
  429. Enables the DMA6 output channel for ser2 (ttyS2).
  430. If you do not enable DMA, an interrupt for each character will be
  431. used when transmitting data.
  432. Normally you want to use DMA, unless you use the DMA channel for
  433. something else.
  434. endchoice
  435. choice
  436. prompt "Ser2 DMA in channel"
  437. depends on ETRAX_SERIAL_PORT2
  438. default ETRAX_SERIAL_PORT2_NO_DMA_IN if ETRAX_ARCH_V32
  439. default ETRAX_SERIAL_PORT2_DMA3_IN if ETRAX_ARCH_V10
  440. help
  441. What DMA channel to use for ser2.
  442. config ETRAX_SERIAL_PORT2_NO_DMA_IN
  443. bool "Ser2 uses no DMA for input"
  444. help
  445. Do not use DMA for ser2 input.
  446. config ETRAX_SERIAL_PORT2_DMA3_IN
  447. bool "Ser2 uses DMA3 for input"
  448. depends on ETRAXFS || ETRAX_ARCH_V10
  449. help
  450. Enables the DMA3 input channel for ser2 (ttyS2).
  451. If you do not enable DMA, an interrupt for each character will be
  452. used when receiving data.
  453. Normally you want to use DMA, unless you use the DMA channel for
  454. something else.
  455. config ETRAX_SERIAL_PORT2_DMA7_IN
  456. bool "Ser2 uses DMA7 for input"
  457. depends on CRIS_MACH_ARTPEC3
  458. help
  459. Enables the DMA7 input channel for ser2 (ttyS2).
  460. If you do not enable DMA, an interrupt for each character will be
  461. used when receiving data.
  462. Normally you want to use DMA, unless you use the DMA channel for
  463. something else.
  464. endchoice
  465. choice
  466. prompt "Ser3 DMA in channel"
  467. depends on ETRAX_SERIAL_PORT3
  468. default ETRAX_SERIAL_PORT3_NO_DMA_IN if ETRAX_ARCH_V32
  469. default ETRAX_SERIAL_PORT3_DMA5_IN if ETRAX_ARCH_V10
  470. help
  471. What DMA channel to use for ser3.
  472. config ETRAX_SERIAL_PORT3_NO_DMA_IN
  473. bool "Ser3 uses no DMA for input"
  474. help
  475. Do not use DMA for ser3 input.
  476. config ETRAX_SERIAL_PORT3_DMA5_IN
  477. depends on ETRAX_ARCH_V10
  478. bool "DMA 5"
  479. config ETRAX_SERIAL_PORT3_DMA9_IN
  480. bool "Ser3 uses DMA9 for input"
  481. depends on ETRAXFS
  482. help
  483. Enables the DMA9 input channel for ser3 (ttyS3).
  484. If you do not enable DMA, an interrupt for each character will be
  485. used when receiving data.
  486. Normally you want to use DMA, unless you use the DMA channel for
  487. something else.
  488. config ETRAX_SERIAL_PORT3_DMA3_IN
  489. bool "Ser3 uses DMA3 for input"
  490. depends on CRIS_MACH_ARTPEC3
  491. help
  492. Enables the DMA3 input channel for ser3 (ttyS3).
  493. If you do not enable DMA, an interrupt for each character will be
  494. used when receiving data.
  495. Normally you want to use DMA, unless you use the DMA channel for
  496. something else.
  497. endchoice
  498. choice
  499. prompt "Ser3 DMA out channel"
  500. depends on ETRAX_SERIAL_PORT3
  501. default ETRAX_SERIAL_PORT3_NO_DMA_OUT if ETRAX_ARCH_V32
  502. default ETRAX_SERIAL_PORT3_DMA4_OUT if ETRAX_ARCH_V10
  503. config ETRAX_SERIAL_PORT3_NO_DMA_OUT
  504. bool "Ser3 uses no DMA for output"
  505. help
  506. Do not use DMA for ser3 output.
  507. config ETRAX_SERIAL_PORT3_DMA4_OUT
  508. depends on ETRAX_ARCH_V10
  509. bool "DMA 4"
  510. config ETRAX_SERIAL_PORT3_DMA8_OUT
  511. bool "Ser3 uses DMA8 for output"
  512. depends on ETRAXFS
  513. help
  514. Enables the DMA8 output channel for ser3 (ttyS3).
  515. If you do not enable DMA, an interrupt for each character will be
  516. used when transmitting data.
  517. Normally you want to use DMA, unless you use the DMA channel for
  518. something else.
  519. config ETRAX_SERIAL_PORT3_DMA2_OUT
  520. bool "Ser3 uses DMA2 for output"
  521. depends on CRIS_MACH_ARTPEC3
  522. help
  523. Enables the DMA2 output channel for ser3 (ttyS3).
  524. If you do not enable DMA, an interrupt for each character will be
  525. used when transmitting data.
  526. Normally you want to use DMA, unless you use the DMA channel for
  527. something else.
  528. endchoice
  529. endmenu
  530. source "drivers/base/Kconfig"
  531. # standard linux drivers
  532. source "drivers/mtd/Kconfig"
  533. source "drivers/parport/Kconfig"
  534. source "drivers/pnp/Kconfig"
  535. source "drivers/block/Kconfig"
  536. source "drivers/ide/Kconfig"
  537. source "drivers/net/Kconfig"
  538. source "drivers/i2c/Kconfig"
  539. source "drivers/rtc/Kconfig"
  540. #
  541. # input before char - char/joystick depends on it. As does USB.
  542. #
  543. source "drivers/input/Kconfig"
  544. source "drivers/char/Kconfig"
  545. source "fs/Kconfig"
  546. source "drivers/usb/Kconfig"
  547. source "drivers/uwb/Kconfig"
  548. source "drivers/staging/Kconfig"
  549. source "arch/cris/Kconfig.debug"
  550. source "security/Kconfig"
  551. source "crypto/Kconfig"
  552. source "lib/Kconfig"