Kconfig 1.5 KB

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