Kconfig 1.9 KB

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