linux/arch/score/Kconfig
<<
>>
Prefs
   1menu "Machine selection"
   2
   3config SCORE
   4       def_bool y
   5       select HAVE_GENERIC_HARDIRQS
   6       select GENERIC_IRQ_SHOW
   7
   8choice
   9        prompt "System type"
  10        default MACH_SPCT6600
  11
  12config ARCH_SCORE7
  13        bool "SCORE7 processor"
  14        select SYS_SUPPORTS_32BIT_KERNEL
  15        select CPU_SCORE7
  16        select GENERIC_HAS_IOMAP
  17
  18config MACH_SPCT6600
  19        bool "SPCT6600 series based machines"
  20        select SYS_SUPPORTS_32BIT_KERNEL
  21        select CPU_SCORE7
  22        select GENERIC_HAS_IOMAP
  23
  24config SCORE_SIM
  25        bool "Score simulator"
  26        select SYS_SUPPORTS_32BIT_KERNEL
  27        select CPU_SCORE7
  28        select GENERIC_HAS_IOMAP
  29endchoice
  30
  31endmenu
  32
  33config CPU_SCORE7
  34        bool
  35
  36config GENERIC_IOMAP
  37        def_bool y
  38
  39config NO_DMA
  40        bool
  41        default y
  42
  43config RWSEM_GENERIC_SPINLOCK
  44        def_bool y
  45
  46config GENERIC_HWEIGHT
  47        def_bool y
  48
  49config GENERIC_CALIBRATE_DELAY
  50        def_bool y
  51
  52config GENERIC_CLOCKEVENTS
  53        def_bool y
  54
  55menu "Kernel type"
  56
  57config 32BIT
  58        def_bool y
  59
  60config ARCH_FLATMEM_ENABLE
  61        def_bool y
  62
  63config ARCH_POPULATES_NODE_MAP
  64        def_bool y
  65
  66source "mm/Kconfig"
  67
  68config MEMORY_START
  69        hex
  70        default 0xa0000000
  71
  72source "kernel/time/Kconfig"
  73source "kernel/Kconfig.hz"
  74source "kernel/Kconfig.preempt"
  75
  76endmenu
  77
  78config RWSEM_GENERIC_SPINLOCK
  79        def_bool y
  80
  81config LOCKDEP_SUPPORT
  82        def_bool y
  83
  84config STACKTRACE_SUPPORT
  85        def_bool y
  86
  87source "init/Kconfig"
  88
  89config MMU
  90        def_bool y
  91
  92menu "Executable file formats"
  93
  94source "fs/Kconfig.binfmt"
  95
  96endmenu
  97
  98source "net/Kconfig"
  99
 100source "drivers/Kconfig"
 101
 102source "fs/Kconfig"
 103
 104source "arch/score/Kconfig.debug"
 105
 106source "security/Kconfig"
 107
 108source "crypto/Kconfig"
 109
 110source "lib/Kconfig"
 111
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.