Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. menu "Machine selection"
  2. config SCORE
  3. def_bool y
  4. select HAVE_GENERIC_HARDIRQS
  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 SCHED_NO_NO_OMIT_FRAME_POINTER
  43. def_bool y
  44. config GENERIC_SYSCALL_TABLE
  45. def_bool y
  46. config SCORE_L1_CACHE_SHIFT
  47. int
  48. default "4"
  49. menu "Kernel type"
  50. config 32BIT
  51. def_bool y
  52. config ARCH_FLATMEM_ENABLE
  53. def_bool y
  54. config ARCH_POPULATES_NODE_MAP
  55. def_bool y
  56. source "mm/Kconfig"
  57. config MEMORY_START
  58. hex
  59. default 0xa0000000
  60. source "kernel/time/Kconfig"
  61. source "kernel/Kconfig.hz"
  62. source "kernel/Kconfig.preempt"
  63. endmenu
  64. config RWSEM_GENERIC_SPINLOCK
  65. def_bool y
  66. config LOCKDEP_SUPPORT
  67. def_bool y
  68. config STACKTRACE_SUPPORT
  69. def_bool y
  70. source "init/Kconfig"
  71. config PROBE_INITRD_HEADER
  72. bool "Probe initrd header created by addinitrd"
  73. depends on BLK_DEV_INITRD
  74. help
  75. Probe initrd header at the last page of kernel image.
  76. Say Y here if you are using arch/score/boot/addinitrd.c to
  77. add initrd or initramfs image to the kernel image.
  78. Otherwise, say N.
  79. config MMU
  80. def_bool y
  81. menu "Executable file formats"
  82. source "fs/Kconfig.binfmt"
  83. endmenu
  84. source "net/Kconfig"
  85. source "drivers/Kconfig"
  86. source "fs/Kconfig"
  87. source "arch/score/Kconfig.debug"
  88. source "security/Kconfig"
  89. source "crypto/Kconfig"
  90. source "lib/Kconfig"