Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. # For a description of the syntax of this configuration file,
  2. # see Documentation/kbuild/kconfig-language.txt.
  3. mainmenu "Linux/SCORE Kernel Configuration"
  4. menu "Machine selection"
  5. choice
  6. prompt "System type"
  7. default MACH_SPCT6600
  8. config ARCH_SCORE7
  9. bool "SCORE7 processor"
  10. select SYS_SUPPORTS_32BIT_KERNEL
  11. select CPU_SCORE7
  12. select GENERIC_HAS_IOMAP
  13. config MACH_SPCT6600
  14. bool "SPCT6600 series based machines"
  15. select SYS_SUPPORTS_32BIT_KERNEL
  16. select CPU_SCORE7
  17. select GENERIC_HAS_IOMAP
  18. config SCORE_SIM
  19. bool "Score simulator"
  20. select SYS_SUPPORTS_32BIT_KERNEL
  21. select CPU_SCORE7
  22. select GENERIC_HAS_IOMAP
  23. endchoice
  24. endmenu
  25. config CPU_SCORE7
  26. bool
  27. config GENERIC_IOMAP
  28. def_bool y
  29. config NO_DMA
  30. bool
  31. default y
  32. config RWSEM_GENERIC_SPINLOCK
  33. def_bool y
  34. config GENERIC_FIND_NEXT_BIT
  35. def_bool y
  36. config GENERIC_HWEIGHT
  37. def_bool y
  38. config GENERIC_CALIBRATE_DELAY
  39. def_bool y
  40. config GENERIC_CLOCKEVENTS
  41. def_bool y
  42. config GENERIC_TIME
  43. def_bool y
  44. config SCHED_NO_NO_OMIT_FRAME_POINTER
  45. def_bool y
  46. config GENERIC_HARDIRQS_NO__DO_IRQ
  47. def_bool y
  48. config GENERIC_SYSCALL_TABLE
  49. def_bool y
  50. config SCORE_L1_CACHE_SHIFT
  51. int
  52. default "4"
  53. menu "Kernel type"
  54. config 32BIT
  55. def_bool y
  56. config GENERIC_HARDIRQS
  57. def_bool y
  58. config ARCH_FLATMEM_ENABLE
  59. def_bool y
  60. config ARCH_POPULATES_NODE_MAP
  61. def_bool y
  62. source "mm/Kconfig"
  63. config MEMORY_START
  64. hex
  65. default 0xa0000000
  66. source "kernel/time/Kconfig"
  67. source "kernel/Kconfig.hz"
  68. source "kernel/Kconfig.preempt"
  69. endmenu
  70. config RWSEM_GENERIC_SPINLOCK
  71. def_bool y
  72. config LOCKDEP_SUPPORT
  73. def_bool y
  74. config STACKTRACE_SUPPORT
  75. def_bool y
  76. source "init/Kconfig"
  77. config PROBE_INITRD_HEADER
  78. bool "Probe initrd header created by addinitrd"
  79. depends on BLK_DEV_INITRD
  80. help
  81. Probe initrd header at the last page of kernel image.
  82. Say Y here if you are using arch/score/boot/addinitrd.c to
  83. add initrd or initramfs image to the kernel image.
  84. Otherwise, say N.
  85. config MMU
  86. def_bool y
  87. menu "Executable file formats"
  88. source "fs/Kconfig.binfmt"
  89. endmenu
  90. source "net/Kconfig"
  91. source "drivers/Kconfig"
  92. source "fs/Kconfig"
  93. source "arch/score/Kconfig.debug"
  94. source "security/Kconfig"
  95. source "crypto/Kconfig"
  96. source "lib/Kconfig"