Kconfig 1.9 KB

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