Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 MODULES_USE_ELF_REL
  15. select GENERIC_KERNEL_THREAD
  16. select GENERIC_KERNEL_EXECVE
  17. select CLONE_BACKWARDS
  18. choice
  19. prompt "System type"
  20. default MACH_SPCT6600
  21. config ARCH_SCORE7
  22. bool "SCORE7 processor"
  23. select SYS_SUPPORTS_32BIT_KERNEL
  24. select CPU_SCORE7
  25. select GENERIC_HAS_IOMAP
  26. config MACH_SPCT6600
  27. bool "SPCT6600 series based machines"
  28. select SYS_SUPPORTS_32BIT_KERNEL
  29. select CPU_SCORE7
  30. select GENERIC_HAS_IOMAP
  31. config SCORE_SIM
  32. bool "Score simulator"
  33. select SYS_SUPPORTS_32BIT_KERNEL
  34. select CPU_SCORE7
  35. select GENERIC_HAS_IOMAP
  36. endchoice
  37. endmenu
  38. config CPU_SCORE7
  39. bool
  40. config NO_DMA
  41. bool
  42. default y
  43. config RWSEM_GENERIC_SPINLOCK
  44. def_bool y
  45. config GENERIC_HWEIGHT
  46. def_bool y
  47. config GENERIC_CALIBRATE_DELAY
  48. def_bool y
  49. menu "Kernel type"
  50. config 32BIT
  51. def_bool y
  52. config ARCH_FLATMEM_ENABLE
  53. def_bool y
  54. source "mm/Kconfig"
  55. config MEMORY_START
  56. hex
  57. default 0xa0000000
  58. source "kernel/Kconfig.hz"
  59. source "kernel/Kconfig.preempt"
  60. endmenu
  61. config RWSEM_GENERIC_SPINLOCK
  62. def_bool y
  63. config LOCKDEP_SUPPORT
  64. def_bool y
  65. config STACKTRACE_SUPPORT
  66. def_bool y
  67. source "init/Kconfig"
  68. config MMU
  69. def_bool y
  70. menu "Executable file formats"
  71. source "fs/Kconfig.binfmt"
  72. endmenu
  73. source "net/Kconfig"
  74. source "drivers/Kconfig"
  75. source "fs/Kconfig"
  76. source "arch/score/Kconfig.debug"
  77. source "security/Kconfig"
  78. source "crypto/Kconfig"
  79. source "lib/Kconfig"