Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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 CLONE_BACKWARDS
  16. choice
  17. prompt "System type"
  18. default MACH_SPCT6600
  19. config ARCH_SCORE7
  20. bool "SCORE7 processor"
  21. select SYS_SUPPORTS_32BIT_KERNEL
  22. select CPU_SCORE7
  23. select GENERIC_HAS_IOMAP
  24. config MACH_SPCT6600
  25. bool "SPCT6600 series based machines"
  26. select SYS_SUPPORTS_32BIT_KERNEL
  27. select CPU_SCORE7
  28. select GENERIC_HAS_IOMAP
  29. config SCORE_SIM
  30. bool "Score simulator"
  31. select SYS_SUPPORTS_32BIT_KERNEL
  32. select CPU_SCORE7
  33. select GENERIC_HAS_IOMAP
  34. endchoice
  35. endmenu
  36. config CPU_SCORE7
  37. bool
  38. config NO_DMA
  39. bool
  40. default y
  41. config RWSEM_GENERIC_SPINLOCK
  42. def_bool y
  43. config GENERIC_HWEIGHT
  44. def_bool y
  45. config GENERIC_CALIBRATE_DELAY
  46. def_bool y
  47. menu "Kernel type"
  48. config 32BIT
  49. def_bool y
  50. config ARCH_FLATMEM_ENABLE
  51. def_bool y
  52. source "mm/Kconfig"
  53. config MEMORY_START
  54. hex
  55. default 0xa0000000
  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"