Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. config M68K
  2. bool
  3. default y
  4. select HAVE_IDE
  5. select HAVE_AOUT if MMU
  6. select HAVE_DEBUG_BUGVERBOSE
  7. select HAVE_GENERIC_HARDIRQS
  8. select GENERIC_IRQ_SHOW
  9. select GENERIC_ATOMIC64
  10. select HAVE_UID16
  11. select HAVE_VIRT_TO_BUS
  12. select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS
  13. select GENERIC_CPU_DEVICES
  14. select GENERIC_STRNCPY_FROM_USER if MMU
  15. select GENERIC_STRNLEN_USER if MMU
  16. select FPU if MMU
  17. select ARCH_WANT_IPC_PARSE_VERSION
  18. select ARCH_USES_GETTIMEOFFSET if MMU && !COLDFIRE
  19. select HAVE_MOD_ARCH_SPECIFIC
  20. select MODULES_USE_ELF_REL
  21. select MODULES_USE_ELF_RELA
  22. select OLD_SIGSUSPEND3
  23. select OLD_SIGACTION
  24. config RWSEM_GENERIC_SPINLOCK
  25. bool
  26. default y
  27. config RWSEM_XCHGADD_ALGORITHM
  28. bool
  29. config ARCH_HAS_ILOG2_U32
  30. bool
  31. config ARCH_HAS_ILOG2_U64
  32. bool
  33. config GENERIC_GPIO
  34. bool
  35. config GENERIC_HWEIGHT
  36. bool
  37. default y
  38. config GENERIC_CALIBRATE_DELAY
  39. bool
  40. default y
  41. config GENERIC_CSUM
  42. bool
  43. config TIME_LOW_RES
  44. bool
  45. default y
  46. config NO_IOPORT
  47. def_bool y
  48. config NO_DMA
  49. def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
  50. config ZONE_DMA
  51. bool
  52. default y
  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. source "mm/Kconfig"
  83. endmenu
  84. menu "Executable file formats"
  85. source "fs/Kconfig.binfmt"
  86. endmenu
  87. if !MMU
  88. menu "Power management options"
  89. config PM
  90. bool "Power Management support"
  91. help
  92. Support processor power management modes
  93. endmenu
  94. endif
  95. source "net/Kconfig"
  96. source "drivers/Kconfig"
  97. source "arch/m68k/Kconfig.devices"
  98. source "fs/Kconfig"
  99. source "arch/m68k/Kconfig.debug"
  100. source "security/Kconfig"
  101. source "crypto/Kconfig"
  102. source "lib/Kconfig"