/arch/cris/Kconfig

https://bitbucket.org/evzijst/gittest · #! · 180 lines · 126 code · 54 blank · 0 comment · 0 complexity · 9326a709e0a4d65d1af5a8302bdc640c MD5 · raw file

  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 UID16
  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_CALIBRATE_DELAY
  18. bool
  19. default y
  20. config CRIS
  21. bool
  22. default y
  23. source "init/Kconfig"
  24. menu "General setup"
  25. source "fs/Kconfig.binfmt"
  26. config ETRAX_CMDLINE
  27. string "Kernel command line"
  28. default "root=/dev/mtdblock3"
  29. help
  30. Pass additional commands to the kernel.
  31. config ETRAX_WATCHDOG
  32. bool "Enable ETRAX watchdog"
  33. help
  34. Enable the built-in watchdog timer support on ETRAX based embedded
  35. network computers.
  36. config ETRAX_WATCHDOG_NICE_DOGGY
  37. bool "Disable watchdog during Oops printouts"
  38. depends on ETRAX_WATCHDOG
  39. help
  40. By enabling this you make sure that the watchdog does not bite while
  41. printing oopses. Recommended for development systems but not for
  42. production releases.
  43. config ETRAX_FAST_TIMER
  44. bool "Enable ETRAX fast timer API"
  45. help
  46. This options enables the API to a fast timer implementation using
  47. timer1 to get sub jiffie resolution timers (primarily one-shot
  48. timers).
  49. This is needed if CONFIG_ETRAX_SERIAL_FAST_TIMER is enabled.
  50. config PREEMPT
  51. bool "Preemptible Kernel"
  52. help
  53. This option reduces the latency of the kernel when reacting to
  54. real-time or interactive events by allowing a low priority process to
  55. be preempted even if it is in kernel mode executing a system call.
  56. This allows applications to run more reliably even when the system is
  57. under load.
  58. Say Y here if you are building a kernel for a desktop, embedded
  59. or real-time system. Say N if you are unsure.
  60. endmenu
  61. menu "Hardware setup"
  62. choice
  63. prompt "Processor type"
  64. default ETRAX100LX
  65. config ETRAX100LX
  66. bool "ETRAX-100LX-v1"
  67. help
  68. Support version 1 of the ETRAX 100LX.
  69. config ETRAX100LX_V2
  70. bool "ETRAX-100LX-v2"
  71. help
  72. Support version 2 of the ETRAX 100LX.
  73. config SVINTO_SIM
  74. bool "ETRAX-100LX-for-xsim-simulator"
  75. help
  76. Support the xsim ETRAX Simulator.
  77. endchoice
  78. config ETRAX_ARCH_V10
  79. bool
  80. default y if ETRAX100LX || ETRAX100LX_V2
  81. default n if !(ETRAX100LX || ETRAX100LX_V2)
  82. config ETRAX_DRAM_SIZE
  83. int "DRAM size (dec, in MB)"
  84. default "8"
  85. help
  86. Size of DRAM (decimal in MB) typically 2, 8 or 16.
  87. config ETRAX_FLASH_BUSWIDTH
  88. int "Buswidth of flash in bytes"
  89. default "2"
  90. help
  91. Width in bytes of the Flash bus (1, 2 or 4). Is usually 2.
  92. source arch/cris/arch-v10/Kconfig
  93. endmenu
  94. # bring in ETRAX built-in drivers
  95. menu "Drivers for built-in interfaces"
  96. source arch/cris/arch-v10/drivers/Kconfig
  97. endmenu
  98. source "drivers/base/Kconfig"
  99. # standard linux drivers
  100. source "drivers/mtd/Kconfig"
  101. source "drivers/parport/Kconfig"
  102. source "drivers/pnp/Kconfig"
  103. source "drivers/block/Kconfig"
  104. source "drivers/md/Kconfig"
  105. source "drivers/ide/Kconfig"
  106. source "drivers/scsi/Kconfig"
  107. source "drivers/ieee1394/Kconfig"
  108. source "drivers/message/i2o/Kconfig"
  109. source "net/Kconfig"
  110. source "drivers/isdn/Kconfig"
  111. source "drivers/telephony/Kconfig"
  112. source "drivers/cdrom/Kconfig"
  113. #
  114. # input before char - char/joystick depends on it. As does USB.
  115. #
  116. source "drivers/input/Kconfig"
  117. source "drivers/char/Kconfig"
  118. #source drivers/misc/Config.in
  119. source "drivers/media/Kconfig"
  120. source "fs/Kconfig"
  121. source "sound/Kconfig"
  122. source "drivers/usb/Kconfig"
  123. source "arch/cris/Kconfig.debug"
  124. source "security/Kconfig"
  125. source "crypto/Kconfig"
  126. source "lib/Kconfig"