Kconfig 1.9 KB

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