Kconfig 1.6 KB

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