Kconfig 1.5 KB

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