1 # SPDX-License-Identifier: GPL-2.0
3 menu "UML-specific options"
8 select ARCH_EPHEMERAL_INODES
9 select ARCH_HAS_GCOV_PROFILE_ALL
11 select ARCH_HAS_STRNCPY_FROM_USER
12 select ARCH_HAS_STRNLEN_USER
13 select ARCH_NO_PREEMPT
14 select HAVE_ARCH_AUDITSYSCALL
15 select HAVE_ARCH_KASAN if X86_64
16 select HAVE_ARCH_KASAN_VMALLOC if HAVE_ARCH_KASAN
17 select HAVE_ARCH_SECCOMP_FILTER
18 select HAVE_ASM_MODVERSIONS
20 select HAVE_DEBUG_KMEMLEAK
21 select HAVE_DEBUG_BUGVERBOSE
22 select NO_DMA if !UML_DMA_EMULATION
23 select OF_EARLY_FLATTREE if OF
24 select GENERIC_IRQ_SHOW
25 select GENERIC_CPU_DEVICES
26 select HAVE_GCC_PLUGINS
27 select TRACE_IRQFLAGS_SUPPORT
28 select TTY # Needed for line.c
29 select HAVE_ARCH_VMAP_STACK
35 config UML_DMA_EMULATION
39 bool "disable IOMEM" if EXPERT
40 depends on !INDIRECT_IOMEM
43 config UML_IOMEM_EMULATION
46 select GENERIC_PCI_IOMAP
48 select NO_GENERIC_PCI_IOPORT_MAP
59 config LOCKDEP_SUPPORT
63 config STACKTRACE_SUPPORT
68 config GENERIC_CALIBRATE_DELAY
81 config ARCH_HAS_CACHE_LINE_SIZE
84 source "arch/$(HEADER_ARCH)/um/Kconfig"
86 config MAY_HAVE_RUNTIME_DEPS
90 bool "Force a static link"
91 depends on CC_CAN_LINK_STATIC_NO_RUNTIME_DEPS || !MAY_HAVE_RUNTIME_DEPS
93 This option gives you the ability to force a static link of UML.
94 Normally, UML is linked as a shared binary. This is inconvenient for
95 use in a chroot jail. So, if you intend to run UML inside a chroot,
96 you probably want to say Y here.
97 Additionally, this option enables using higher memory spaces (up to
100 NOTE: This option is incompatible with some networking features which
101 depend on features that require being dynamically loaded (like NSS).
103 config LD_SCRIPT_STATIC
106 depends on STATIC_LINK
111 depends on !LD_SCRIPT_STATIC
113 config LD_SCRIPT_DYN_RPATH
114 bool "set rpath in the binary" if EXPERT
116 depends on LD_SCRIPT_DYN
118 Add /lib (and /lib64 for 64-bit) to the linux binary's rpath
121 You may need to turn this off if compiling for nix systems
122 that have their libraries in random /nix directories and
123 might otherwise unexpected use libraries from /lib or /lib64
124 instead of the desired ones.
127 tristate "Host filesystem"
129 While the User-Mode Linux port uses its own root file system for
130 booting and normal file access, this module lets the UML user
131 access files stored on the host. It does not require any
132 network connection between the Host and UML. An example use of
135 mount none /tmp/fromhost -t hostfs -o /tmp/umlshare
137 where /tmp/fromhost is an empty directory inside UML and
138 /tmp/umlshare is a directory on the host with files the UML user
141 For more information, see
142 <http://user-mode-linux.sourceforge.net/hostfs.html>.
144 If you'd like to be able to work with files stored on the host,
145 say Y or M here; otherwise say N.
148 bool "Management console"
152 The user mode linux management console is a low-level interface to
153 the kernel, somewhat like the i386 SysRq interface. Since there is
154 a full-blown operating system running under every user mode linux
155 instance, there is much greater flexibility possible than with the
158 If you answer 'Y' to this option, to use this feature, you need the
159 mconsole client (called uml_mconsole) which is present in CVS in
160 2.4.5-9um and later (path /tools/mconsole), and is also in the
161 distribution RPM package in 2.4.6 and later.
163 It is safe to say 'Y' here.
166 bool "Magic SysRq key"
169 If you say Y here, you will have some control over the system even
170 if the system crashes for example during kernel debugging (e.g., you
171 will be able to flush the buffer cache to disk, reboot the system
172 immediately or dump some status information). A key for each of the
173 possible requests is provided.
175 This is the feature normally accomplished by pressing a key
176 while holding SysRq (Alt+PrintScreen).
178 On UML, this is accomplished by sending a "sysrq" command with
179 mconsole, followed by the letter for the requested command.
181 The keys are documented in <file:Documentation/admin-guide/sysrq.rst>. Don't say Y
182 unless you really know what this hack does.
184 config KERNEL_STACK_ORDER
185 int "Kernel stack size order"
190 This option determines the size of UML kernel stacks. They will
191 be 1 << order pages. The default is OK unless you're running Valgrind
192 on UML, in which case, set this to 3.
193 It is possible to reduce the stack to 1 for 64BIT and 0 for 32BIT on
194 older (pre-2017) CPUs. It is not recommended on newer CPUs due to the
195 increase in the size of the state which needs to be saved when handling
199 tristate "iomem emulation driver"
201 This driver allows a host file to be used as emulated IO memory inside
204 config PGTABLE_LEVELS
206 default 3 if 3_LEVEL_PGTABLES
209 config UML_TIME_TRAVEL_SUPPORT
211 prompt "Support time-travel mode (e.g. for test execution)"
212 # inf-cpu mode is incompatible with the benchmarking
213 depends on !RAID6_PQ_BENCHMARK
216 Enable this option to support time travel inside the UML instance.
218 After enabling this option, two modes are accessible at runtime
219 (selected by the kernel command line), see the kernel's command-
220 line help for more details.
222 It is safe to say Y, but you probably don't need this.
224 config KASAN_SHADOW_OFFSET
227 default 0x100000000000
229 This is the offset at which the ~16TB of shadow memory is
230 mapped and used by KASAN for memory debugging. This can be any
231 address that has at least KASAN_SHADOW_SIZE (total address space divided
232 by 8) amount of space so that the KASAN shadow memory does not conflict
233 with anything. The default is 0x100000000000, which works even if mem is
234 set to a large value. On low-memory systems, try 0x7fff8000, as it fits
235 into the immediate of most instructions, improving performance.
239 source "arch/um/drivers/Kconfig"
241 config ARCH_SUSPEND_POSSIBLE
244 source "kernel/power/Kconfig"