1 # SPDX-License-Identifier: GPL-2.0
3 menu "UML-specific options"
8 select ARCH_EPHEMERAL_INODES
10 select ARCH_HAS_STRNCPY_FROM_USER
11 select ARCH_HAS_STRNLEN_USER
12 select ARCH_NO_PREEMPT
13 select HAVE_ARCH_AUDITSYSCALL
14 select HAVE_ARCH_SECCOMP_FILTER
15 select HAVE_ASM_MODVERSIONS
17 select HAVE_DEBUG_KMEMLEAK
18 select HAVE_DEBUG_BUGVERBOSE
19 select NO_DMA if !UML_DMA_EMULATION
20 select OF_EARLY_FLATTREE if OF
21 select GENERIC_IRQ_SHOW
22 select GENERIC_CPU_DEVICES
23 select HAVE_GCC_PLUGINS
24 select TRACE_IRQFLAGS_SUPPORT
25 select TTY # Needed for line.c
26 select HAVE_ARCH_VMAP_STACK
32 config UML_DMA_EMULATION
36 bool "disable IOMEM" if EXPERT
37 depends on !INDIRECT_IOMEM
40 config UML_IOMEM_EMULATION
43 select GENERIC_PCI_IOMAP
45 select NO_GENERIC_PCI_IOPORT_MAP
56 config LOCKDEP_SUPPORT
60 config STACKTRACE_SUPPORT
65 config GENERIC_CALIBRATE_DELAY
78 config ARCH_HAS_CACHE_LINE_SIZE
81 source "arch/$(HEADER_ARCH)/um/Kconfig"
83 config MAY_HAVE_RUNTIME_DEPS
87 bool "Force a static link"
88 depends on CC_CAN_LINK_STATIC_NO_RUNTIME_DEPS || !MAY_HAVE_RUNTIME_DEPS
90 This option gives you the ability to force a static link of UML.
91 Normally, UML is linked as a shared binary. This is inconvenient for
92 use in a chroot jail. So, if you intend to run UML inside a chroot,
93 you probably want to say Y here.
94 Additionally, this option enables using higher memory spaces (up to
97 NOTE: This option is incompatible with some networking features which
98 depend on features that require being dynamically loaded (like NSS).
100 config LD_SCRIPT_STATIC
103 depends on STATIC_LINK
108 depends on !LD_SCRIPT_STATIC
110 config LD_SCRIPT_DYN_RPATH
111 bool "set rpath in the binary" if EXPERT
113 depends on LD_SCRIPT_DYN
115 Add /lib (and /lib64 for 64-bit) to the linux binary's rpath
118 You may need to turn this off if compiling for nix systems
119 that have their libraries in random /nix directories and
120 might otherwise unexpected use libraries from /lib or /lib64
121 instead of the desired ones.
124 tristate "Host filesystem"
126 While the User-Mode Linux port uses its own root file system for
127 booting and normal file access, this module lets the UML user
128 access files stored on the host. It does not require any
129 network connection between the Host and UML. An example use of
132 mount none /tmp/fromhost -t hostfs -o /tmp/umlshare
134 where /tmp/fromhost is an empty directory inside UML and
135 /tmp/umlshare is a directory on the host with files the UML user
138 For more information, see
139 <http://user-mode-linux.sourceforge.net/hostfs.html>.
141 If you'd like to be able to work with files stored on the host,
142 say Y or M here; otherwise say N.
145 bool "Management console"
149 The user mode linux management console is a low-level interface to
150 the kernel, somewhat like the i386 SysRq interface. Since there is
151 a full-blown operating system running under every user mode linux
152 instance, there is much greater flexibility possible than with the
155 If you answer 'Y' to this option, to use this feature, you need the
156 mconsole client (called uml_mconsole) which is present in CVS in
157 2.4.5-9um and later (path /tools/mconsole), and is also in the
158 distribution RPM package in 2.4.6 and later.
160 It is safe to say 'Y' here.
163 bool "Magic SysRq key"
166 If you say Y here, you will have some control over the system even
167 if the system crashes for example during kernel debugging (e.g., you
168 will be able to flush the buffer cache to disk, reboot the system
169 immediately or dump some status information). A key for each of the
170 possible requests is provided.
172 This is the feature normally accomplished by pressing a key
173 while holding SysRq (Alt+PrintScreen).
175 On UML, this is accomplished by sending a "sysrq" command with
176 mconsole, followed by the letter for the requested command.
178 The keys are documented in <file:Documentation/admin-guide/sysrq.rst>. Don't say Y
179 unless you really know what this hack does.
181 config KERNEL_STACK_ORDER
182 int "Kernel stack size order"
187 This option determines the size of UML kernel stacks. They will
188 be 1 << order pages. The default is OK unless you're running Valgrind
189 on UML, in which case, set this to 3.
190 It is possible to reduce the stack to 1 for 64BIT and 0 for 32BIT on
191 older (pre-2017) CPUs. It is not recommended on newer CPUs due to the
192 increase in the size of the state which needs to be saved when handling
196 tristate "iomem emulation driver"
198 This driver allows a host file to be used as emulated IO memory inside
201 config PGTABLE_LEVELS
203 default 3 if 3_LEVEL_PGTABLES
206 config UML_TIME_TRAVEL_SUPPORT
208 prompt "Support time-travel mode (e.g. for test execution)"
209 # inf-cpu mode is incompatible with the benchmarking
210 depends on !RAID6_PQ_BENCHMARK
213 Enable this option to support time travel inside the UML instance.
215 After enabling this option, two modes are accessible at runtime
216 (selected by the kernel command line), see the kernel's command-
217 line help for more details.
219 It is safe to say Y, but you probably don't need this.
223 source "arch/um/drivers/Kconfig"
225 config ARCH_SUSPEND_POSSIBLE
228 source "kernel/power/Kconfig"