Merge bk://linux-sam.bkbits.net/kbuild
[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
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         depends on SMP
132         default "32"
133
134 config NEST_LEVEL
135         int "Nesting level"
136         default "0"
137         help
138         This is set to the number of layers of UMLs that this UML will be run
139         in.  Normally, this is zero, meaning that it will run directly on the
140         host.  Setting it to one will build a UML that can run inside a UML
141         that is running on the host.  Generally, if you intend this UML to run
142         inside another UML, set CONFIG_NEST_LEVEL to one more than the host 
143         UML.
144
145         Note that if the hosting UML has its CONFIG_KERNEL_HALF_GIGS set to 
146         greater than one, then the guest UML should have its CONFIG_NEST_LEVEL 
147         set to the host's CONFIG_NEST_LEVEL + CONFIG_KERNEL_HALF_GIGS.
148         Only change this if you are running nested UMLs.
149
150 config KERNEL_HALF_GIGS
151         int "Kernel address space size (in .5G units)"
152         default "1"
153         help
154         This determines the amount of address space that UML will allocate for
155         its own, measured in half Gigabyte units.  The default is 1.
156         Change this only if you need to boot UML with an unusually large amount
157         of physical memory.
158
159 config HIGHMEM
160         bool "Highmem support"
161
162 config KERNEL_STACK_ORDER
163         int "Kernel stack size order"
164         default 2
165         help
166         This option determines the size of UML kernel stacks.  They will
167         be 1 << order pages.  The default is OK unless you're running Valgrind
168         on UML, in which case, set this to 3.
169
170 endmenu
171
172 source "init/Kconfig"
173
174 source "drivers/base/Kconfig"
175
176 source "arch/um/Kconfig_char"
177
178 source "arch/um/Kconfig_block"
179
180 config NETDEVICES
181         bool
182         default NET
183
184 source "arch/um/Kconfig_net"
185
186 source "net/Kconfig"
187
188 source "fs/Kconfig"
189
190 source "security/Kconfig"
191
192 source "crypto/Kconfig"
193
194 source "lib/Kconfig"
195
196 menu "SCSI support"
197
198 config SCSI
199         tristate "SCSI support"
200
201 # This gives us free_dma, which scsi.c wants.
202 config GENERIC_ISA_DMA
203         bool
204         depends on SCSI
205         default y
206
207 source "arch/um/Kconfig_scsi"
208
209 endmenu
210
211 source "drivers/md/Kconfig"
212
213 source "drivers/mtd/Kconfig"
214
215
216 menu "Kernel hacking"
217
218 config DEBUG_SLAB
219         bool "Debug memory allocations"
220
221 config DEBUG_SPINLOCK
222         bool "Debug spinlocks usage"
223
224 config DEBUG_INFO
225         bool "Enable kernel debugging symbols"
226         help
227         When this is enabled, the User-Mode Linux binary will include
228         debugging symbols.  This enlarges the binary by a few megabytes,
229         but aids in tracking down kernel problems in UML.  It is required
230         if you intend to do any kernel development.
231
232         If you're truly short on disk space or don't expect to report any
233         bugs back to the UML developers, say N, otherwise say Y.
234
235 config FRAME_POINTER
236         bool
237         default y if DEBUG_INFO
238
239 config PT_PROXY
240         bool "Enable ptrace proxy"
241         depends on XTERM_CHAN && DEBUG_INFO
242
243 config GPROF
244         bool "Enable gprof support"
245         depends on DEBUG_INFO
246         help
247         This allows profiling of a User-Mode Linux kernel with the gprof
248         utility.
249
250         See <http://user-mode-linux.sourceforge.net/gprof.html> for more
251         details.
252
253         If you're involved in UML kernel development and want to use gprof,
254         say Y.  If you're unsure, say N.
255
256 config GCOV
257         bool "Enable gcov support"
258         depends on DEBUG_INFO
259         help
260         This option allows developers to retrieve coverage data from a UML
261         session.
262
263         See <http://user-mode-linux.sourceforge.net/gcov.html> for more
264         details.
265
266         If you're involved in UML kernel development and want to use gcov,
267         say Y.  If you're unsure, say N.
268
269 endmenu
270