47fbaf3f4b63721db474ce6c35b6215c2c199601
[linux-2.6.git] / arch / um / Kconfig
1 config USERMODE
2         bool
3         default y
4
5 # XXX: does UM have a mmu/swap?
6 config MMU
7         bool
8         default y
9
10 mainmenu "Linux/Usermode Kernel Configuration"
11
12 config ISA
13         bool
14
15 config SBUS
16         bool
17
18 config PCI
19         bool
20
21 config UID16
22         bool
23         default y
24
25 config RWSEM_GENERIC_SPINLOCK
26         bool
27         default y
28
29 menu "UML-specific options"
30
31 config MODE_TT
32         bool "Tracing thread support"
33         default y
34         help
35         This option controls whether tracing thread support is compiled
36         into UML.  Normally, this should be set to Y.  If you intend to
37         use only skas mode (and the host has the skas patch applied to it), 
38         then it is OK to say N here.
39
40 config STATIC_LINK
41         bool "Force a static link"
42         default n
43         depends on !MODE_TT
44         help
45         If CONFIG_MODE_TT is disabled, then this option gives you the ability
46         to force a static link of UML.  Normally, if only skas mode is built
47         in to UML, it will be linked as a shared binary.  This is inconvenient
48         for use in a chroot jail.  So, if you intend to run UML inside a 
49         chroot, and you disable CONFIG_MODE_TT, you probably want to say Y
50         here.
51
52 config MODE_SKAS
53         bool "Separate Kernel Address Space support"
54         default y
55         help
56         This option controls whether skas (separate kernel address space)
57         support is compiled in.  If you have applied the skas patch to the
58         host, then you certainly want to say Y here (and consider saying N
59         to CONFIG_MODE_TT).  Otherwise, it is safe to say Y.  Disabling this
60         option will shrink the UML binary slightly.
61
62 config NET
63         bool "Networking support"
64
65 source "fs/Kconfig.binfmt"
66
67 config HOSTFS
68         tristate "Host filesystem"
69         help
70         While the User-Mode Linux port uses its own root file system for
71         booting and normal file access, this module lets the UML user
72         access files stored on the host.  It does not require any
73         network connection between the Host and UML.  An example use of
74         this might be:
75
76         mount none /tmp/fromhost -t hostfs -o /tmp/umlshare
77
78         where /tmp/fromhost is an empty directory inside UML and
79         /tmp/umlshare is a directory on the host with files the UML user
80         wishes to access.
81
82         For more information, see
83         <http://user-mode-linux.sourceforge.net/hostfs.html>.
84
85         If you'd like to be able to work with files stored on the host, 
86         say Y or M here; otherwise say N.
87
88
89 config MCONSOLE
90         bool "Management console"
91         help
92         The user mode linux management console is a low-level interface to
93         the kernel, somewhat like the i386 SysRq interface.  Since there is
94         a full-blown operating system running under every user mode linux
95         instance, there is much greater flexibility possible than with the
96         SysRq mechanism.
97
98         If you answer 'Y' to this option, to use this feature, you need the
99         mconsole client (called uml_mconsole) which is present in CVS in
100         2.4.5-9um and later (path /tools/mconsole), and is also in the
101         distribution RPM package in 2.4.6 and later.
102
103         It is safe to say 'Y' here.
104
105 config MAGIC_SYSRQ
106         bool "Magic SysRq key"
107         depends on MCONSOLE
108
109 config HOST_2G_2G
110         bool "2G/2G host address space split"
111
112 config UML_SMP
113         bool "Symmetric multi-processing support"
114         help
115         This option enables UML SMP support.  UML implements virtual SMP by
116         allowing as many processes to run simultaneously on the host as
117         there are virtual processors configured.  Obviously, if the host is
118         a uniprocessor, those processes will timeshare, but, inside UML,
119         will appear to be running simultaneously.  If the host is a
120         multiprocessor, then UML processes may run simultaneously, depending
121         on the host scheduler.
122         CONFIG_SMP will be set to whatever this option is set to.
123         It is safe to leave this unchanged.
124
125 config SMP
126         bool
127         default UML_SMP
128
129 config NR_CPUS
130         int "Maximum number of CPUs (2-32)"
131         range 2 32
132         depends on SMP
133         default "32"
134
135 config NEST_LEVEL
136         int "Nesting level"
137         default "0"
138         help
139         This is set to the number of layers of UMLs that this UML will be run
140         in.  Normally, this is zero, meaning that it will run directly on the
141         host.  Setting it to one will build a UML that can run inside a UML
142         that is running on the host.  Generally, if you intend this UML to run
143         inside another UML, set CONFIG_NEST_LEVEL to one more than the host 
144         UML.
145
146         Note that if the hosting UML has its CONFIG_KERNEL_HALF_GIGS set to 
147         greater than one, then the guest UML should have its CONFIG_NEST_LEVEL 
148         set to the host's CONFIG_NEST_LEVEL + CONFIG_KERNEL_HALF_GIGS.
149         Only change this if you are running nested UMLs.
150
151 config KERNEL_HALF_GIGS
152         int "Kernel address space size (in .5G units)"
153         default "1"
154         help
155         This determines the amount of address space that UML will allocate for
156         its own, measured in half Gigabyte units.  The default is 1.
157         Change this only if you need to boot UML with an unusually large amount
158         of physical memory.
159
160 config HIGHMEM
161         bool "Highmem support"
162
163 config KERNEL_STACK_ORDER
164         int "Kernel stack size order"
165         default 2
166         help
167         This option determines the size of UML kernel stacks.  They will
168         be 1 << order pages.  The default is OK unless you're running Valgrind
169         on UML, in which case, set this to 3.
170
171 endmenu
172
173 source "init/Kconfig"
174
175 source "drivers/base/Kconfig"
176
177 source "arch/um/Kconfig_char"
178
179 source "arch/um/Kconfig_block"
180
181 config NETDEVICES
182         bool
183         default NET
184
185 source "arch/um/Kconfig_net"
186
187 source "net/Kconfig"
188
189 source "fs/Kconfig"
190
191 source "security/Kconfig"
192
193 source "crypto/Kconfig"
194
195 source "lib/Kconfig"
196
197 menu "SCSI support"
198
199 config SCSI
200         tristate "SCSI support"
201
202 # This gives us free_dma, which scsi.c wants.
203 config GENERIC_ISA_DMA
204         bool
205         depends on SCSI
206         default y
207
208 source "arch/um/Kconfig_scsi"
209
210 endmenu
211
212 source "drivers/md/Kconfig"
213
214 source "drivers/mtd/Kconfig"
215
216
217 menu "Kernel hacking"
218
219 config DEBUG_SLAB
220         bool "Debug memory allocations"
221
222 config DEBUG_SPINLOCK
223         bool "Debug spinlocks usage"
224
225 config DEBUG_INFO
226         bool "Enable kernel debugging symbols"
227         help
228         When this is enabled, the User-Mode Linux binary will include
229         debugging symbols.  This enlarges the binary by a few megabytes,
230         but aids in tracking down kernel problems in UML.  It is required
231         if you intend to do any kernel development.
232
233         If you're truly short on disk space or don't expect to report any
234         bugs back to the UML developers, say N, otherwise say Y.
235
236 config FRAME_POINTER
237         bool
238         default y if DEBUG_INFO
239
240 config PT_PROXY
241         bool "Enable ptrace proxy"
242         depends on XTERM_CHAN && DEBUG_INFO
243
244 config GPROF
245         bool "Enable gprof support"
246         depends on DEBUG_INFO
247         help
248         This allows profiling of a User-Mode Linux kernel with the gprof
249         utility.
250
251         See <http://user-mode-linux.sourceforge.net/gprof.html> for more
252         details.
253
254         If you're involved in UML kernel development and want to use gprof,
255         say Y.  If you're unsure, say N.
256
257 config GCOV
258         bool "Enable gcov support"
259         depends on DEBUG_INFO
260         help
261         This option allows developers to retrieve coverage data from a UML
262         session.
263
264         See <http://user-mode-linux.sourceforge.net/gprof.html> for more
265         details.
266
267         If you're involved in UML kernel development and want to use gcov,
268         say Y.  If you're unsure, say N.
269
270 endmenu
271