linux/arch/score/Kconfig
<<
>>
Prefs
   1menu "Machine selection"
   2
   3config SCORE
   4       def_bool y
   5       select HAVE_GENERIC_HARDIRQS
   6
   7choice
   8        prompt "System type"
   9        default MACH_SPCT6600
  10
  11config ARCH_SCORE7
  12        bool "SCORE7 processor"
  13        select SYS_SUPPORTS_32BIT_KERNEL
  14        select CPU_SCORE7
  15        select GENERIC_HAS_IOMAP
  16
  17config MACH_SPCT6600
  18        bool "SPCT6600 series based machines"
  19        select SYS_SUPPORTS_32BIT_KERNEL
  20        select CPU_SCORE7
  21        select GENERIC_HAS_IOMAP
  22
  23config SCORE_SIM
  24        bool "Score simulator"
  25        select SYS_SUPPORTS_32BIT_KERNEL
  26        select CPU_SCORE7
  27        select GENERIC_HAS_IOMAP
  28endchoice
  29
  30endmenu
  31
  32config CPU_SCORE7
  33        bool
  34
  35config GENERIC_IOMAP
  36        def_bool y
  37
  38config NO_DMA
  39        bool
  40        default y
  41
  42config RWSEM_GENERIC_SPINLOCK
  43        def_bool y
  44
  45config GENERIC_FIND_NEXT_BIT
  46        def_bool y
  47
  48config GENERIC_HWEIGHT
  49        def_bool y
  50
  51config GENERIC_CALIBRATE_DELAY
  52        def_bool y
  53
  54config GENERIC_CLOCKEVENTS
  55        def_bool y
  56
  57config SCHED_NO_NO_OMIT_FRAME_POINTER
  58        def_bool y
  59
  60config GENERIC_SYSCALL_TABLE
  61        def_bool y
  62
  63config SCORE_L1_CACHE_SHIFT
  64        int
  65        default "4"
  66
  67menu "Kernel type"
  68
  69config 32BIT
  70        def_bool y
  71
  72config ARCH_FLATMEM_ENABLE
  73        def_bool y
  74
  75config ARCH_POPULATES_NODE_MAP
  76        def_bool y
  77
  78source "mm/Kconfig"
  79
  80config MEMORY_START
  81        hex
  82        default 0xa0000000
  83
  84source "kernel/time/Kconfig"
  85source "kernel/Kconfig.hz"
  86source "kernel/Kconfig.preempt"
  87
  88endmenu
  89
  90config RWSEM_GENERIC_SPINLOCK
  91        def_bool y
  92
  93config LOCKDEP_SUPPORT
  94        def_bool y
  95
  96config STACKTRACE_SUPPORT
  97        def_bool y
  98
  99source "init/Kconfig"
 100
 101config PROBE_INITRD_HEADER
 102        bool "Probe initrd header created by addinitrd"
 103        depends on BLK_DEV_INITRD
 104        help
 105          Probe initrd header at the last page of kernel image.
 106          Say Y here if you are using arch/score/boot/addinitrd.c to
 107          add initrd or initramfs image to the kernel image.
 108          Otherwise, say N.
 109
 110config MMU
 111        def_bool y
 112
 113menu "Executable file formats"
 114
 115source "fs/Kconfig.binfmt"
 116
 117endmenu
 118
 119source "net/Kconfig"
 120
 121source "drivers/Kconfig"
 122
 123source "fs/Kconfig"
 124
 125source "arch/score/Kconfig.debug"
 126
 127source "security/Kconfig"
 128
 129source "crypto/Kconfig"
 130
 131source "lib/Kconfig"
 132