Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. config M68K
  2. bool
  3. default y
  4. select HAVE_IDE
  5. select HAVE_AOUT if MMU
  6. select HAVE_GENERIC_HARDIRQS
  7. select GENERIC_IRQ_SHOW
  8. select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS
  9. select GENERIC_CPU_DEVICES
  10. select FPU if MMU
  11. config RWSEM_GENERIC_SPINLOCK
  12. bool
  13. default y
  14. config RWSEM_XCHGADD_ALGORITHM
  15. bool
  16. config ARCH_HAS_ILOG2_U32
  17. bool
  18. config ARCH_HAS_ILOG2_U64
  19. bool
  20. config GENERIC_CLOCKEVENTS
  21. bool
  22. config GENERIC_GPIO
  23. bool
  24. config GENERIC_HWEIGHT
  25. bool
  26. default y
  27. config GENERIC_CALIBRATE_DELAY
  28. bool
  29. default y
  30. config GENERIC_CSUM
  31. bool
  32. config TIME_LOW_RES
  33. bool
  34. default y
  35. config ARCH_USES_GETTIMEOFFSET
  36. def_bool MMU && !COLDFIRE
  37. config NO_IOPORT
  38. def_bool y
  39. config NO_DMA
  40. def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
  41. config ZONE_DMA
  42. bool
  43. default y
  44. config CPU_HAS_NO_BITFIELDS
  45. bool
  46. config CPU_HAS_NO_MULDIV64
  47. bool
  48. config CPU_HAS_ADDRESS_SPACES
  49. bool
  50. config FPU
  51. bool
  52. config HZ
  53. int
  54. default 1000 if CLEOPATRA
  55. default 100
  56. source "init/Kconfig"
  57. source "kernel/Kconfig.freezer"
  58. config MMU
  59. bool "MMU-based Paged Memory Management Support"
  60. default y
  61. select GENERIC_IOMAP
  62. help
  63. Select if you want MMU-based virtualised addressing space
  64. support by paged memory management. If unsure, say 'Y'.
  65. config MMU_MOTOROLA
  66. bool
  67. config MMU_COLDFIRE
  68. bool
  69. config MMU_SUN3
  70. bool
  71. depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
  72. menu "Platform setup"
  73. source arch/m68k/Kconfig.cpu
  74. source arch/m68k/Kconfig.machine
  75. source arch/m68k/Kconfig.bus
  76. endmenu
  77. menu "Kernel Features"
  78. if COLDFIRE
  79. source "kernel/Kconfig.preempt"
  80. endif
  81. if !MMU || COLDFIRE
  82. source "kernel/time/Kconfig"
  83. endif
  84. source "mm/Kconfig"
  85. endmenu
  86. menu "Executable file formats"
  87. source "fs/Kconfig.binfmt"
  88. endmenu
  89. if !MMU
  90. menu "Power management options"
  91. config PM
  92. bool "Power Management support"
  93. help
  94. Support processor power management modes
  95. endmenu
  96. endif
  97. source "net/Kconfig"
  98. source "drivers/Kconfig"
  99. source "arch/m68k/Kconfig.devices"
  100. source "fs/Kconfig"
  101. source "arch/m68k/Kconfig.debug"
  102. source "security/Kconfig"
  103. source "crypto/Kconfig"
  104. source "lib/Kconfig"