Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. config RWSEM_GENERIC_SPINLOCK
  10. bool
  11. default y
  12. config RWSEM_XCHGADD_ALGORITHM
  13. bool
  14. config ARCH_HAS_ILOG2_U32
  15. bool
  16. config ARCH_HAS_ILOG2_U64
  17. bool
  18. config GENERIC_CLOCKEVENTS
  19. bool
  20. config GENERIC_CMOS_UPDATE
  21. def_bool !MMU
  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_IOMAP
  31. def_bool MMU
  32. config GENERIC_CSUM
  33. bool
  34. config TIME_LOW_RES
  35. bool
  36. default y
  37. config ARCH_USES_GETTIMEOFFSET
  38. def_bool MMU
  39. config NO_IOPORT
  40. def_bool y
  41. config NO_DMA
  42. def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
  43. config ZONE_DMA
  44. bool
  45. default y
  46. config CPU_HAS_NO_BITFIELDS
  47. bool
  48. config CPU_HAS_NO_MULDIV64
  49. bool
  50. config HZ
  51. int
  52. default 1000 if CLEOPATRA
  53. default 100
  54. source "init/Kconfig"
  55. source "kernel/Kconfig.freezer"
  56. config MMU
  57. bool "MMU-based Paged Memory Management Support"
  58. default y
  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_SUN3
  65. bool
  66. depends on MMU && !MMU_MOTOROLA
  67. menu "Platform setup"
  68. source arch/m68k/Kconfig.cpu
  69. source arch/m68k/Kconfig.machine
  70. source arch/m68k/Kconfig.bus
  71. endmenu
  72. menu "Kernel Features"
  73. if COLDFIRE
  74. source "kernel/Kconfig.preempt"
  75. endif
  76. if !MMU || COLDFIRE
  77. source "kernel/time/Kconfig"
  78. endif
  79. source "mm/Kconfig"
  80. endmenu
  81. menu "Executable file formats"
  82. source "fs/Kconfig.binfmt"
  83. endmenu
  84. if !MMU
  85. menu "Power management options"
  86. config PM
  87. bool "Power Management support"
  88. help
  89. Support processor power management modes
  90. endmenu
  91. endif
  92. source "net/Kconfig"
  93. source "drivers/Kconfig"
  94. source "arch/m68k/Kconfig.devices"
  95. source "fs/Kconfig"
  96. source "arch/m68k/Kconfig.debug"
  97. source "security/Kconfig"
  98. source "crypto/Kconfig"
  99. source "lib/Kconfig"