commented early_printk patch because of rejects.
[linux-flexiantxendom0-3.2.10.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         help
65         Unless you really know what you are doing, you should say Y here.
66         The reason is that some programs need kernel networking support even
67         when running on a stand-alone machine that isn't connected to any
68         other computer. If you are upgrading from an older kernel, you
69         should consider updating your networking tools too because changes
70         in the kernel and the tools often go hand in hand. The tools are
71         contained in the package net-tools, the location and version number
72         of which are given in Documentation/Changes.
73
74         For a general introduction to Linux networking, it is highly
75         recommended to read the NET-HOWTO, available from
76         <http://www.tldp.org/docs.html#howto>.
77
78
79 source "fs/Kconfig.binfmt"
80
81 config HOSTFS
82         tristate "Host filesystem"
83         help
84         While the User-Mode Linux port uses its own root file system for
85         booting and normal file access, this module lets the UML user
86         access files stored on the host.  It does not require any
87         network connection between the Host and UML.  An example use of
88         this might be:
89
90         mount none /tmp/fromhost -t hostfs -o /tmp/umlshare
91
92         where /tmp/fromhost is an empty directory inside UML and
93         /tmp/umlshare is a directory on the host with files the UML user
94         wishes to access.
95
96         For more information, see
97         <http://user-mode-linux.sourceforge.net/hostfs.html>.
98
99         If you'd like to be able to work with files stored on the host, 
100         say Y or M here; otherwise say N.
101
102 config HPPFS
103         tristate "HoneyPot ProcFS"
104         help
105         hppfs (HoneyPot ProcFS) is a filesystem which allows UML /proc 
106         entries to be overridden, removed, or fabricated from the host.
107         Its purpose is to allow a UML to appear to be a physical machine
108         by removing or changing anything in /proc which gives away the
109         identity of a UML.
110
111         See http://user-mode-linux.sf.net/hppfs.html for more information.
112
113         You only need this if you are setting up a UML honeypot.  Otherwise,
114         it is safe to say 'N' here.
115
116 config MCONSOLE
117         bool "Management console"
118         help
119         The user mode linux management console is a low-level interface to
120         the kernel, somewhat like the i386 SysRq interface.  Since there is
121         a full-blown operating system running under every user mode linux
122         instance, there is much greater flexibility possible than with the
123         SysRq mechanism.
124
125         If you answer 'Y' to this option, to use this feature, you need the
126         mconsole client (called uml_mconsole) which is present in CVS in
127         2.4.5-9um and later (path /tools/mconsole), and is also in the
128         distribution RPM package in 2.4.6 and later.
129
130         It is safe to say 'Y' here.
131
132 config MAGIC_SYSRQ
133         bool "Magic SysRq key"
134         depends on MCONSOLE
135         help
136         If you say Y here, you will have some control over the system even
137         if the system crashes for example during kernel debugging (e.g., you
138         will be able to flush the buffer cache to disk, reboot the system
139         immediately or dump some status information). This is accomplished
140         by pressing various keys while holding SysRq (Alt+PrintScreen). It
141         also works on a serial console (on PC hardware at least), if you
142         send a BREAK and then within 5 seconds a command keypress. The
143         keys are documented in Documentation/sysrq.txt. Don't say Y
144         unless you really know what this hack does.
145
146 config HOST_2G_2G
147         bool "2G/2G host address space split"
148
149 config UML_SMP
150         bool "Symmetric multi-processing support"
151         help
152         This option enables UML SMP support.  UML implements virtual SMP by
153         allowing as many processes to run simultaneously on the host as
154         there are virtual processors configured.  Obviously, if the host is
155         a uniprocessor, those processes will timeshare, but, inside UML,
156         will appear to be running simultaneously.  If the host is a
157         multiprocessor, then UML processes may run simultaneously, depending
158         on the host scheduler.
159         CONFIG_SMP will be set to whatever this option is set to.
160         It is safe to leave this unchanged.
161
162 config SMP
163         bool
164         default UML_SMP
165
166 config NR_CPUS
167         int "Maximum number of CPUs (2-32)"
168         depends on SMP
169         default "32"
170
171 config NEST_LEVEL
172         int "Nesting level"
173         default "0"
174         help
175         This is set to the number of layers of UMLs that this UML will be run
176         in.  Normally, this is zero, meaning that it will run directly on the
177         host.  Setting it to one will build a UML that can run inside a UML
178         that is running on the host.  Generally, if you intend this UML to run
179         inside another UML, set CONFIG_NEST_LEVEL to one more than the host 
180         UML.
181
182         Note that if the hosting UML has its CONFIG_KERNEL_HALF_GIGS set to 
183         greater than one, then the guest UML should have its CONFIG_NEST_LEVEL 
184         set to the host's CONFIG_NEST_LEVEL + CONFIG_KERNEL_HALF_GIGS.
185         Only change this if you are running nested UMLs.
186
187 config KERNEL_HALF_GIGS
188         int "Kernel address space size (in .5G units)"
189         default "1"
190         help
191         This determines the amount of address space that UML will allocate for
192         its own, measured in half Gigabyte units.  The default is 1.
193         Change this only if you need to boot UML with an unusually large amount
194         of physical memory.
195
196 config HIGHMEM
197         bool "Highmem support"
198
199 config PROC_MM
200         bool "/proc/mm support"
201
202 config KERNEL_STACK_ORDER
203         int "Kernel stack size order"
204         default 2
205         help
206         This option determines the size of UML kernel stacks.  They will
207         be 1 << order pages.  The default is OK unless you're running Valgrind
208         on UML, in which case, set this to 3.
209
210 endmenu
211
212 source "init/Kconfig"
213
214 source "drivers/base/Kconfig"
215
216 source "arch/um/Kconfig_char"
217
218 source "arch/um/Kconfig_block"
219
220 config NETDEVICES
221         bool
222         default NET
223
224 source "arch/um/Kconfig_net"
225
226 source "net/Kconfig"
227
228 source "fs/Kconfig"
229
230 source "security/Kconfig"
231
232 source "crypto/Kconfig"
233
234 source "lib/Kconfig"
235
236 menu "SCSI support"
237
238 config SCSI
239         tristate "SCSI support"
240
241 # This gives us free_dma, which scsi.c wants.
242 config GENERIC_ISA_DMA
243         bool
244         depends on SCSI
245         default y
246
247 source "arch/um/Kconfig_scsi"
248
249 endmenu
250
251 source "drivers/md/Kconfig"
252
253 source "drivers/mtd/Kconfig"
254
255
256 menu "Kernel hacking"
257
258 config DEBUG_SLAB
259         bool "Debug memory allocations"
260
261 config DEBUG_SPINLOCK
262         bool "Debug spinlocks usage"
263
264 config DEBUG_INFO
265         bool "Enable kernel debugging symbols"
266         help
267         When this is enabled, the User-Mode Linux binary will include
268         debugging symbols.  This enlarges the binary by a few megabytes,
269         but aids in tracking down kernel problems in UML.  It is required
270         if you intend to do any kernel development.
271
272         If you're truly short on disk space or don't expect to report any
273         bugs back to the UML developers, say N, otherwise say Y.
274
275 config FRAME_POINTER
276         bool
277         default y if DEBUG_INFO
278
279 config PT_PROXY
280         bool "Enable ptrace proxy"
281         depends on XTERM_CHAN && DEBUG_INFO
282         help
283         This option enables a debugging interface which allows gdb to debug
284         the kernel without needing to actually attach to kernel threads.
285         If you want to do kernel debugging, say Y here; otherwise say N.
286
287 config GPROF
288         bool "Enable gprof support"
289         depends on DEBUG_INFO
290         help
291         This allows profiling of a User-Mode Linux kernel with the gprof
292         utility.
293
294         See <http://user-mode-linux.sourceforge.net/gprof.html> for more
295         details.
296
297         If you're involved in UML kernel development and want to use gprof,
298         say Y.  If you're unsure, say N.
299
300 config GCOV
301         bool "Enable gcov support"
302         depends on DEBUG_INFO
303         help
304         This option allows developers to retrieve coverage data from a UML
305         session.
306
307         See <http://user-mode-linux.sourceforge.net/gcov.html> for more
308         details.
309
310         If you're involved in UML kernel development and want to use gcov,
311         say Y.  If you're unsure, say N.
312
313 endmenu
314
315 source "rpmify/Kconfig"
316