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. choice
  12. prompt "System type"
  13. default MACH_SPCT6600
  14. config ARCH_SCORE7
  15. bool "SCORE7 processor"
  16. select SYS_SUPPORTS_32BIT_KERNEL
  17. select CPU_SCORE7
  18. select GENERIC_HAS_IOMAP
  19. config MACH_SPCT6600
  20. bool "SPCT6600 series based machines"
  21. select SYS_SUPPORTS_32BIT_KERNEL
  22. select CPU_SCORE7
  23. select GENERIC_HAS_IOMAP
  24. config SCORE_SIM
  25. bool "Score simulator"
  26. select SYS_SUPPORTS_32BIT_KERNEL
  27. select CPU_SCORE7
  28. select GENERIC_HAS_IOMAP
  29. endchoice
  30. endmenu
  31. config CPU_SCORE7
  32. bool
  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. source "mm/Kconfig"
  50. config MEMORY_START
  51. hex
  52. default 0xa0000000
  53. source "kernel/time/Kconfig"
  54. source "kernel/Kconfig.hz"
  55. source "kernel/Kconfig.preempt"
  56. endmenu
  57. config RWSEM_GENERIC_SPINLOCK
  58. def_bool y
  59. config LOCKDEP_SUPPORT
  60. def_bool y
  61. config STACKTRACE_SUPPORT
  62. def_bool y
  63. source "init/Kconfig"
  64. config MMU
  65. def_bool y
  66. menu "Executable file formats"
  67. source "fs/Kconfig.binfmt"
  68. endmenu
  69. source "net/Kconfig"
  70. source "drivers/Kconfig"
  71. source "fs/Kconfig"
  72. source "arch/score/Kconfig.debug"
  73. source "security/Kconfig"
  74. source "crypto/Kconfig"
  75. source "lib/Kconfig"