Kconfig 2.0 KB

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