Kconfig 2.0 KB

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