Kconfig 2.1 KB

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