Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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 GENERIC_CLOCKEVENTS
  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. menu "Kernel type"
  44. config 32BIT
  45. def_bool y
  46. config ARCH_FLATMEM_ENABLE
  47. def_bool y
  48. source "mm/Kconfig"
  49. config MEMORY_START
  50. hex
  51. default 0xa0000000
  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"