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