Kconfig 16 KB

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