Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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 SCHED_NO_NO_OMIT_FRAME_POINTER
  40. def_bool y
  41. config GENERIC_SYSCALL_TABLE
  42. def_bool y
  43. config SCORE_L1_CACHE_SHIFT
  44. int
  45. default "4"
  46. menu "Kernel type"
  47. config 32BIT
  48. def_bool y
  49. config GENERIC_HARDIRQS
  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"