Kconfig 1.7 KB

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