Kconfig 2.2 KB

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