Kconfig 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 GENERIC_IRQ_SHOW
  8. select GENERIC_ATOMIC64
  9. select HAVE_UID16
  10. select VIRT_TO_BUS
  11. select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS
  12. select GENERIC_CPU_DEVICES
  13. select GENERIC_IOMAP
  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_HWEIGHT
  34. bool
  35. default y
  36. config GENERIC_CALIBRATE_DELAY
  37. bool
  38. default y
  39. config GENERIC_CSUM
  40. bool
  41. config TIME_LOW_RES
  42. bool
  43. default y
  44. config NO_IOPORT
  45. def_bool y
  46. config NO_DMA
  47. def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
  48. config ZONE_DMA
  49. bool
  50. default y
  51. config HZ
  52. int
  53. default 1000 if CLEOPATRA
  54. default 100
  55. source "init/Kconfig"
  56. source "kernel/Kconfig.freezer"
  57. config MMU
  58. bool "MMU-based Paged Memory Management Support"
  59. default y
  60. help
  61. Select if you want MMU-based virtualised addressing space
  62. support by paged memory management. If unsure, say 'Y'.
  63. config MMU_MOTOROLA
  64. bool
  65. config MMU_COLDFIRE
  66. bool
  67. config MMU_SUN3
  68. bool
  69. depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
  70. menu "Platform setup"
  71. source arch/m68k/Kconfig.cpu
  72. source arch/m68k/Kconfig.machine
  73. source arch/m68k/Kconfig.bus
  74. endmenu
  75. menu "Kernel Features"
  76. if COLDFIRE
  77. source "kernel/Kconfig.preempt"
  78. endif
  79. source "mm/Kconfig"
  80. endmenu
  81. menu "Executable file formats"
  82. source "fs/Kconfig.binfmt"
  83. endmenu
  84. if !MMU
  85. menu "Power management options"
  86. config PM
  87. bool "Power Management support"
  88. help
  89. Support processor power management modes
  90. endmenu
  91. endif
  92. source "net/Kconfig"
  93. source "drivers/Kconfig"
  94. source "arch/m68k/Kconfig.devices"
  95. source "fs/Kconfig"
  96. source "arch/m68k/Kconfig.debug"
  97. source "security/Kconfig"
  98. source "crypto/Kconfig"
  99. source "lib/Kconfig"