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 ARCH_WANT_IPC_PARSE_VERSION
  18. select ARCH_USES_GETTIMEOFFSET if MMU && !COLDFIRE
  19. select HAVE_FUTEX_CMPXCHG if MMU && FUTEX
  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_MAP
  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. config PGTABLE_LEVELS
  57. default 2 if SUN3 || COLDFIRE
  58. default 3
  59. source "init/Kconfig"
  60. source "kernel/Kconfig.freezer"
  61. config MMU
  62. bool "MMU-based Paged Memory Management Support"
  63. default y
  64. help
  65. Select if you want MMU-based virtualised addressing space
  66. support by paged memory management. If unsure, say 'Y'.
  67. config MMU_MOTOROLA
  68. bool
  69. config MMU_COLDFIRE
  70. bool
  71. config MMU_SUN3
  72. bool
  73. depends on MMU && !MMU_MOTOROLA && !MMU_COLDFIRE
  74. config KEXEC
  75. bool "kexec system call"
  76. depends on M68KCLASSIC
  77. select KEXEC_CORE
  78. help
  79. kexec is a system call that implements the ability to shutdown your
  80. current kernel, and to start another kernel. It is like a reboot
  81. but it is independent of the system firmware. And like a reboot
  82. you can start any kernel with it, not just Linux.
  83. The name comes from the similarity to the exec system call.
  84. It is an ongoing process to be certain the hardware in a machine
  85. is properly shutdown, so do not be surprised if this code does not
  86. initially work for you. As of this writing the exact hardware
  87. interface is strongly in flux, so no good recommendation can be
  88. made.
  89. config BOOTINFO_PROC
  90. bool "Export bootinfo in procfs"
  91. depends on KEXEC && M68KCLASSIC
  92. help
  93. Say Y to export the bootinfo used to boot the kernel in a
  94. "bootinfo" file in procfs. This is useful with kexec.
  95. menu "Platform setup"
  96. source arch/m68k/Kconfig.cpu
  97. source arch/m68k/Kconfig.machine
  98. source arch/m68k/Kconfig.bus
  99. endmenu
  100. menu "Kernel Features"
  101. if COLDFIRE
  102. source "kernel/Kconfig.preempt"
  103. endif
  104. source "mm/Kconfig"
  105. endmenu
  106. menu "Executable file formats"
  107. source "fs/Kconfig.binfmt"
  108. endmenu
  109. if !MMU
  110. menu "Power management options"
  111. config PM
  112. bool "Power Management support"
  113. help
  114. Support processor power management modes
  115. endmenu
  116. endif
  117. source "net/Kconfig"
  118. source "drivers/Kconfig"
  119. source "arch/m68k/Kconfig.devices"
  120. source "fs/Kconfig"
  121. source "arch/m68k/Kconfig.debug"
  122. source "security/Kconfig"
  123. source "crypto/Kconfig"
  124. source "lib/Kconfig"