Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. choice
  17. prompt "System type"
  18. default MACH_SPCT6600
  19. config ARCH_SCORE7
  20. bool "SCORE7 processor"
  21. select SYS_SUPPORTS_32BIT_KERNEL
  22. config MACH_SPCT6600
  23. bool "SPCT6600 series based machines"
  24. select SYS_SUPPORTS_32BIT_KERNEL
  25. config SCORE_SIM
  26. bool "Score simulator"
  27. select SYS_SUPPORTS_32BIT_KERNEL
  28. endchoice
  29. endmenu
  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. menu "Kernel type"
  40. config 32BIT
  41. def_bool y
  42. config ARCH_FLATMEM_ENABLE
  43. def_bool y
  44. source "mm/Kconfig"
  45. config MEMORY_START
  46. hex
  47. default 0xa0000000
  48. source "kernel/Kconfig.hz"
  49. source "kernel/Kconfig.preempt"
  50. endmenu
  51. config RWSEM_GENERIC_SPINLOCK
  52. def_bool y
  53. config LOCKDEP_SUPPORT
  54. def_bool y
  55. config STACKTRACE_SUPPORT
  56. def_bool y
  57. source "init/Kconfig"
  58. source "kernel/Kconfig.freezer"
  59. config MMU
  60. def_bool y
  61. menu "Executable file formats"
  62. source "fs/Kconfig.binfmt"
  63. endmenu
  64. source "net/Kconfig"
  65. source "drivers/Kconfig"
  66. source "fs/Kconfig"
  67. source "arch/score/Kconfig.debug"
  68. source "security/Kconfig"
  69. source "crypto/Kconfig"
  70. source "lib/Kconfig"
  71. config NO_IOMEM
  72. def_bool y