Kconfig 2.0 KB

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