kbuild: migrate all arch to the kconfig mainmenu upgrade
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / score / Kconfig
CommitLineData
6bc9a396
CL
1menu "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
53config GENERIC_TIME
54 def_bool y
55
56config SCHED_NO_NO_OMIT_FRAME_POINTER
57 def_bool y
58
59config GENERIC_HARDIRQS_NO__DO_IRQ
60 def_bool y
61
62config GENERIC_SYSCALL_TABLE
63 def_bool y
64
65config SCORE_L1_CACHE_SHIFT
66 int
67 default "4"
68
69menu "Kernel type"
70
71config 32BIT
72 def_bool y
73
74config GENERIC_HARDIRQS
75 def_bool y
76
77config ARCH_FLATMEM_ENABLE
78 def_bool y
79
80config ARCH_POPULATES_NODE_MAP
81 def_bool y
82
83source "mm/Kconfig"
84
85config MEMORY_START
86 hex
87 default 0xa0000000
88
89source "kernel/time/Kconfig"
90source "kernel/Kconfig.hz"
91source "kernel/Kconfig.preempt"
92
93endmenu
94
95config RWSEM_GENERIC_SPINLOCK
96 def_bool y
97
98config LOCKDEP_SUPPORT
99 def_bool y
100
101config STACKTRACE_SUPPORT
102 def_bool y
103
104source "init/Kconfig"
105
106config PROBE_INITRD_HEADER
107 bool "Probe initrd header created by addinitrd"
108 depends on BLK_DEV_INITRD
109 help
110 Probe initrd header at the last page of kernel image.
111 Say Y here if you are using arch/score/boot/addinitrd.c to
112 add initrd or initramfs image to the kernel image.
113 Otherwise, say N.
114
115config MMU
116 def_bool y
117
118menu "Executable file formats"
119
120source "fs/Kconfig.binfmt"
121
122endmenu
123
124source "net/Kconfig"
125
126source "drivers/Kconfig"
127
128source "fs/Kconfig"
129
130source "arch/score/Kconfig.debug"
131
132source "security/Kconfig"
133
134source "crypto/Kconfig"
135
136source "lib/Kconfig"