• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1menu "Machine selection"
2
3config SCORE
4       def_bool y
5       select HAVE_GENERIC_HARDIRQS
6       select GENERIC_IRQ_SHOW
7       select GENERIC_IOMAP
8       select HAVE_MEMBLOCK
9       select HAVE_MEMBLOCK_NODE_MAP
10       select ARCH_DISCARD_MEMBLOCK
11       select GENERIC_CPU_DEVICES
12
13choice
14	prompt "System type"
15	default MACH_SPCT6600
16
17config ARCH_SCORE7
18	bool "SCORE7 processor"
19	select SYS_SUPPORTS_32BIT_KERNEL
20	select CPU_SCORE7
21	select GENERIC_HAS_IOMAP
22
23config MACH_SPCT6600
24	bool "SPCT6600 series based machines"
25	select SYS_SUPPORTS_32BIT_KERNEL
26	select CPU_SCORE7
27	select GENERIC_HAS_IOMAP
28
29config SCORE_SIM
30	bool "Score simulator"
31	select SYS_SUPPORTS_32BIT_KERNEL
32	select CPU_SCORE7
33	select GENERIC_HAS_IOMAP
34endchoice
35
36endmenu
37
38config CPU_SCORE7
39	bool
40
41config NO_DMA
42	bool
43	default y
44
45config RWSEM_GENERIC_SPINLOCK
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
57menu "Kernel type"
58
59config 32BIT
60	def_bool y
61
62config ARCH_FLATMEM_ENABLE
63	def_bool y
64
65source "mm/Kconfig"
66
67config MEMORY_START
68	hex
69	default	0xa0000000
70
71source "kernel/time/Kconfig"
72source "kernel/Kconfig.hz"
73source "kernel/Kconfig.preempt"
74
75endmenu
76
77config RWSEM_GENERIC_SPINLOCK
78	def_bool y
79
80config LOCKDEP_SUPPORT
81	def_bool y
82
83config STACKTRACE_SUPPORT
84	def_bool y
85
86source "init/Kconfig"
87
88config MMU
89	def_bool y
90
91menu "Executable file formats"
92
93source "fs/Kconfig.binfmt"
94
95endmenu
96
97source "net/Kconfig"
98
99source "drivers/Kconfig"
100
101source "fs/Kconfig"
102
103source "arch/score/Kconfig.debug"
104
105source "security/Kconfig"
106
107source "crypto/Kconfig"
108
109source "lib/Kconfig"
110