]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/score/Kconfig
Merge branch 'flock' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/bkl
[net-next-2.6.git] / arch / score / Kconfig
CommitLineData
6bc9a396
CL
1# For a description of the syntax of this configuration file,
2# see Documentation/kbuild/kconfig-language.txt.
3
4mainmenu "Linux/SCORE Kernel Configuration"
5
6menu "Machine selection"
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_FIND_NEXT_BIT
47 def_bool y
48
49config GENERIC_HWEIGHT
50 def_bool y
51
52config GENERIC_CALIBRATE_DELAY
53 def_bool y
54
55config GENERIC_CLOCKEVENTS
56 def_bool y
57
6bc9a396
CL
58config SCHED_NO_NO_OMIT_FRAME_POINTER
59 def_bool y
60
61config GENERIC_HARDIRQS_NO__DO_IRQ
62 def_bool y
63
64config GENERIC_SYSCALL_TABLE
65 def_bool y
66
67config SCORE_L1_CACHE_SHIFT
68 int
69 default "4"
70
71menu "Kernel type"
72
73config 32BIT
74 def_bool y
75
76config GENERIC_HARDIRQS
77 def_bool y
78
79config ARCH_FLATMEM_ENABLE
80 def_bool y
81
82config ARCH_POPULATES_NODE_MAP
83 def_bool y
84
85source "mm/Kconfig"
86
87config MEMORY_START
88 hex
89 default 0xa0000000
90
91source "kernel/time/Kconfig"
92source "kernel/Kconfig.hz"
93source "kernel/Kconfig.preempt"
94
95endmenu
96
97config RWSEM_GENERIC_SPINLOCK
98 def_bool y
99
100config LOCKDEP_SUPPORT
101 def_bool y
102
103config STACKTRACE_SUPPORT
104 def_bool y
105
106source "init/Kconfig"
107
108config PROBE_INITRD_HEADER
109 bool "Probe initrd header created by addinitrd"
110 depends on BLK_DEV_INITRD
111 help
112 Probe initrd header at the last page of kernel image.
113 Say Y here if you are using arch/score/boot/addinitrd.c to
114 add initrd or initramfs image to the kernel image.
115 Otherwise, say N.
116
117config MMU
118 def_bool y
119
120menu "Executable file formats"
121
122source "fs/Kconfig.binfmt"
123
124endmenu
125
126source "net/Kconfig"
127
128source "drivers/Kconfig"
129
130source "fs/Kconfig"
131
132source "arch/score/Kconfig.debug"
133
134source "security/Kconfig"
135
136source "crypto/Kconfig"
137
138source "lib/Kconfig"