Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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_FUTEX_CMPXCHG if MMU && FUTEX
  21. select HAVE_MOD_ARCH_SPECIFIC
  22. select MODULES_USE_ELF_REL
  23. select MODULES_USE_ELF_RELA
  24. select OLD_SIGSUSPEND3
  25. select OLD_SIGACTION
  26. config RWSEM_GENERIC_SPINLOCK
  27. bool
  28. default y
  29. config RWSEM_XCHGADD_ALGORITHM
  30. bool
  31. config ARCH_HAS_ILOG2_U32
  32. bool
  33. config ARCH_HAS_ILOG2_U64
  34. bool
  35. config GENERIC_HWEIGHT
  36. bool
  37. default y
  38. config GENERIC_CALIBRATE_DELAY
  39. bool
  40. default y
  41. config GENERIC_CSUM
  42. bool
  43. config TIME_LOW_RES
  44. bool
  45. default y
  46. config NO_IOPORT_MAP
  47. def_bool y
  48. config NO_DMA
  49. def_bool (MMU && SUN3) || (!MMU && !COLDFIRE)
  50. config ZONE_DMA
  51. bool
  52. default y
  53. config HZ
  54. int
  55. default 1000 if CLEOPATRA
  56. default 100
  57. config PGTABLE_LEVELS
  58. default 2 if SUN3 || COLDFIRE
  59. default 3
  60. source "init/Kconfig"
  61. source "kernel/Kconfig.freezer"
  62. config MMU
  63. bool "MMU-based Paged Memory Management Support"
  64. default y
  65. help
  66. Select if you want MMU-based virtualised addressing space
  67. support by paged memory management. If unsure, say 'Y'.
  68. config MMU_MOTOROLA
  69. bool
  70. config MMU_COLDFIRE
  71. bool
  72. config MMU_SUN3
  73. bool
  74. depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
  75. config KEXEC
  76. bool "kexec system call"
  77. depends on M68KCLASSIC
  78. select KEXEC_CORE
  79. help
  80. kexec is a system call that implements the ability to shutdown your
  81. current kernel, and to start another kernel. It is like a reboot
  82. but it is independent of the system firmware. And like a reboot
  83. you can start any kernel with it, not just Linux.
  84. The name comes from the similarity to the exec system call.
  85. It is an ongoing process to be certain the hardware in a machine
  86. is properly shutdown, so do not be surprised if this code does not
  87. initially work for you. As of this writing the exact hardware
  88. interface is strongly in flux, so no good recommendation can be
  89. made.
  90. config BOOTINFO_PROC
  91. bool "Export bootinfo in procfs"
  92. depends on KEXEC && M68KCLASSIC
  93. help
  94. Say Y to export the bootinfo used to boot the kernel in a
  95. "bootinfo" file in procfs. This is useful with kexec.
  96. menu "Platform setup"
  97. source arch/m68k/Kconfig.cpu
  98. source arch/m68k/Kconfig.machine
  99. source arch/m68k/Kconfig.bus
  100. endmenu
  101. menu "Kernel Features"
  102. if COLDFIRE
  103. source "kernel/Kconfig.preempt"
  104. endif
  105. source "mm/Kconfig"
  106. endmenu
  107. menu "Executable file formats"
  108. source "fs/Kconfig.binfmt"
  109. endmenu
  110. if !MMU
  111. menu "Power management options"
  112. config PM
  113. bool "Power Management support"
  114. help
  115. Support processor power management modes
  116. endmenu
  117. endif
  118. source "net/Kconfig"
  119. source "drivers/Kconfig"
  120. source "arch/m68k/Kconfig.devices"
  121. source "fs/Kconfig"
  122. source "arch/m68k/Kconfig.debug"
  123. source "security/Kconfig"
  124. source "crypto/Kconfig"
  125. source "lib/Kconfig"