Kconfig 16 KB

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