Kconfig 1.9 KB

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