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