Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. menu "Machine selection"
  2. config SCORE
  3. def_bool y
  4. select GENERIC_IRQ_SHOW
  5. select GENERIC_IOMAP
  6. select GENERIC_ATOMIC64
  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. select HAVE_MOD_ARCH_SPECIFIC
  13. select VIRT_TO_BUS
  14. select MODULES_USE_ELF_REL
  15. select CLONE_BACKWARDS
  16. select CPU_NO_EFFICIENT_FFS
  17. choice
  18. prompt "System type"
  19. default MACH_SPCT6600
  20. config ARCH_SCORE7
  21. bool "SCORE7 processor"
  22. select SYS_SUPPORTS_32BIT_KERNEL
  23. config MACH_SPCT6600
  24. bool "SPCT6600 series based machines"
  25. select SYS_SUPPORTS_32BIT_KERNEL
  26. config SCORE_SIM
  27. bool "Score simulator"
  28. select SYS_SUPPORTS_32BIT_KERNEL
  29. endchoice
  30. endmenu
  31. config NO_DMA
  32. bool
  33. default y
  34. config RWSEM_GENERIC_SPINLOCK
  35. def_bool y
  36. config GENERIC_HWEIGHT
  37. def_bool y
  38. config GENERIC_CALIBRATE_DELAY
  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. source "mm/Kconfig"
  46. config MEMORY_START
  47. hex
  48. default 0xa0000000
  49. source "kernel/Kconfig.hz"
  50. source "kernel/Kconfig.preempt"
  51. endmenu
  52. config RWSEM_GENERIC_SPINLOCK
  53. def_bool y
  54. config LOCKDEP_SUPPORT
  55. def_bool y
  56. config STACKTRACE_SUPPORT
  57. def_bool y
  58. source "init/Kconfig"
  59. source "kernel/Kconfig.freezer"
  60. config MMU
  61. def_bool y
  62. menu "Executable file formats"
  63. source "fs/Kconfig.binfmt"
  64. endmenu
  65. source "net/Kconfig"
  66. source "drivers/Kconfig"
  67. source "fs/Kconfig"
  68. source "arch/score/Kconfig.debug"
  69. source "security/Kconfig"
  70. source "crypto/Kconfig"
  71. source "lib/Kconfig"
  72. config NO_IOMEM
  73. def_bool y