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