Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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_HARDIRQS_NO__DO_IRQ
  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 GENERIC_HARDIRQS
  52. def_bool y
  53. config ARCH_FLATMEM_ENABLE
  54. def_bool y
  55. config ARCH_POPULATES_NODE_MAP
  56. def_bool y
  57. source "mm/Kconfig"
  58. config MEMORY_START
  59. hex
  60. default 0xa0000000
  61. source "kernel/time/Kconfig"
  62. source "kernel/Kconfig.hz"
  63. source "kernel/Kconfig.preempt"
  64. endmenu
  65. config RWSEM_GENERIC_SPINLOCK
  66. def_bool y
  67. config LOCKDEP_SUPPORT
  68. def_bool y
  69. config STACKTRACE_SUPPORT
  70. def_bool y
  71. source "init/Kconfig"
  72. config PROBE_INITRD_HEADER
  73. bool "Probe initrd header created by addinitrd"
  74. depends on BLK_DEV_INITRD
  75. help
  76. Probe initrd header at the last page of kernel image.
  77. Say Y here if you are using arch/score/boot/addinitrd.c to
  78. add initrd or initramfs image to the kernel image.
  79. Otherwise, say N.
  80. config MMU
  81. def_bool y
  82. menu "Executable file formats"
  83. source "fs/Kconfig.binfmt"
  84. endmenu
  85. source "net/Kconfig"
  86. source "drivers/Kconfig"
  87. source "fs/Kconfig"
  88. source "arch/score/Kconfig.debug"
  89. source "security/Kconfig"
  90. source "crypto/Kconfig"
  91. source "lib/Kconfig"