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