Kconfig 2.0 KB

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