Kconfig 2.0 KB

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