Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. config M68K
  2. bool
  3. default y
  4. select HAVE_IDE
  5. select HAVE_AOUT if MMU
  6. select GENERIC_ATOMIC64 if MMU
  7. select HAVE_GENERIC_HARDIRQS
  8. select GENERIC_IRQ_SHOW
  9. select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS
  10. config RWSEM_GENERIC_SPINLOCK
  11. bool
  12. default y
  13. config RWSEM_XCHGADD_ALGORITHM
  14. bool
  15. config ARCH_HAS_ILOG2_U32
  16. bool
  17. config ARCH_HAS_ILOG2_U64
  18. bool
  19. config GENERIC_CLOCKEVENTS
  20. bool
  21. config GENERIC_CMOS_UPDATE
  22. def_bool !MMU
  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 TIME_LOW_RES
  32. bool
  33. default y
  34. config ARCH_USES_GETTIMEOFFSET
  35. def_bool MMU
  36. config NO_IOPORT
  37. def_bool y
  38. config NO_DMA
  39. def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
  40. config ZONE_DMA
  41. bool
  42. default y
  43. config CPU_HAS_NO_BITFIELDS
  44. bool
  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_SUN3
  61. bool
  62. depends on MMU && !MMU_MOTOROLA
  63. menu "Platform setup"
  64. source arch/m68k/Kconfig.cpu
  65. source arch/m68k/Kconfig.machine
  66. source arch/m68k/Kconfig.bus
  67. endmenu
  68. menu "Kernel Features"
  69. if COLDFIRE
  70. source "kernel/Kconfig.preempt"
  71. endif
  72. if !MMU || COLDFIRE
  73. source "kernel/time/Kconfig"
  74. endif
  75. source "mm/Kconfig"
  76. endmenu
  77. menu "Executable file formats"
  78. source "fs/Kconfig.binfmt"
  79. endmenu
  80. if !MMU
  81. menu "Power management options"
  82. config PM
  83. bool "Power Management support"
  84. help
  85. Support processor power management modes
  86. endmenu
  87. endif
  88. source "net/Kconfig"
  89. source "drivers/Kconfig"
  90. source "arch/m68k/Kconfig.devices"
  91. source "fs/Kconfig"
  92. source "arch/m68k/Kconfig.debug"
  93. source "security/Kconfig"
  94. source "crypto/Kconfig"
  95. source "lib/Kconfig"