linux/arch/score/Kconfig
<<
>>
Prefs
   1menu "Machine selection"
   2
   3config SCORE
   4       def_bool y
   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 VIRT_TO_BUS
  15        select MODULES_USE_ELF_REL
  16        select CLONE_BACKWARDS
  17        select CPU_NO_EFFICIENT_FFS
  18
  19choice
  20        prompt "System type"
  21        default MACH_SPCT6600
  22
  23config ARCH_SCORE7
  24        bool "SCORE7 processor"
  25        select SYS_SUPPORTS_32BIT_KERNEL
  26
  27config MACH_SPCT6600
  28        bool "SPCT6600 series based machines"
  29        select SYS_SUPPORTS_32BIT_KERNEL
  30
  31config SCORE_SIM
  32        bool "Score simulator"
  33        select SYS_SUPPORTS_32BIT_KERNEL
  34endchoice
  35
  36endmenu
  37
  38config NO_DMA
  39        bool
  40        default y
  41
  42config RWSEM_GENERIC_SPINLOCK
  43        def_bool y
  44
  45config GENERIC_HWEIGHT
  46        def_bool y
  47
  48config GENERIC_CALIBRATE_DELAY
  49        def_bool y
  50
  51menu "Kernel type"
  52
  53config 32BIT
  54        def_bool y
  55
  56config ARCH_FLATMEM_ENABLE
  57        def_bool y
  58
  59source "mm/Kconfig"
  60
  61config MEMORY_START
  62        hex
  63        default 0xa0000000
  64
  65source "kernel/Kconfig.hz"
  66source "kernel/Kconfig.preempt"
  67
  68endmenu
  69
  70config RWSEM_GENERIC_SPINLOCK
  71        def_bool y
  72
  73config LOCKDEP_SUPPORT
  74        def_bool y
  75
  76config STACKTRACE_SUPPORT
  77        def_bool y
  78
  79source "init/Kconfig"
  80
  81source "kernel/Kconfig.freezer"
  82
  83config MMU
  84        def_bool y
  85
  86menu "Executable file formats"
  87
  88source "fs/Kconfig.binfmt"
  89
  90endmenu
  91
  92source "net/Kconfig"
  93
  94source "drivers/Kconfig"
  95
  96source "fs/Kconfig"
  97
  98source "arch/score/Kconfig.debug"
  99
 100source "security/Kconfig"
 101
 102source "crypto/Kconfig"
 103
 104source "lib/Kconfig"
 105
 106config NO_IOMEM
 107       def_bool y
 108