Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. menu "Machine selection"
  2. config SCORE
  3. def_bool y
  4. select HAVE_GENERIC_HARDIRQS
  5. select GENERIC_IRQ_SHOW
  6. select HAVE_MEMBLOCK
  7. select HAVE_MEMBLOCK_NODE_MAP
  8. select ARCH_DISCARD_MEMBLOCK
  9. choice
  10. prompt "System type"
  11. default MACH_SPCT6600
  12. config ARCH_SCORE7
  13. bool "SCORE7 processor"
  14. select SYS_SUPPORTS_32BIT_KERNEL
  15. select CPU_SCORE7
  16. select GENERIC_HAS_IOMAP
  17. config MACH_SPCT6600
  18. bool "SPCT6600 series based machines"
  19. select SYS_SUPPORTS_32BIT_KERNEL
  20. select CPU_SCORE7
  21. select GENERIC_HAS_IOMAP
  22. config SCORE_SIM
  23. bool "Score simulator"
  24. select SYS_SUPPORTS_32BIT_KERNEL
  25. select CPU_SCORE7
  26. select GENERIC_HAS_IOMAP
  27. endchoice
  28. endmenu
  29. config CPU_SCORE7
  30. bool
  31. config GENERIC_IOMAP
  32. def_bool y
  33. config NO_DMA
  34. bool
  35. default y
  36. config RWSEM_GENERIC_SPINLOCK
  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. menu "Kernel type"
  45. config 32BIT
  46. def_bool y
  47. config ARCH_FLATMEM_ENABLE
  48. def_bool y
  49. config ARCH_POPULATES_NODE_MAP
  50. def_bool y
  51. source "mm/Kconfig"
  52. config MEMORY_START
  53. hex
  54. default 0xa0000000
  55. source "kernel/time/Kconfig"
  56. source "kernel/Kconfig.hz"
  57. source "kernel/Kconfig.preempt"
  58. endmenu
  59. config RWSEM_GENERIC_SPINLOCK
  60. def_bool y
  61. config LOCKDEP_SUPPORT
  62. def_bool y
  63. config STACKTRACE_SUPPORT
  64. def_bool y
  65. source "init/Kconfig"
  66. config MMU
  67. def_bool y
  68. menu "Executable file formats"
  69. source "fs/Kconfig.binfmt"
  70. endmenu
  71. source "net/Kconfig"
  72. source "drivers/Kconfig"
  73. source "fs/Kconfig"
  74. source "arch/score/Kconfig.debug"
  75. source "security/Kconfig"
  76. source "crypto/Kconfig"
  77. source "lib/Kconfig"