blob: fe6d898aeb8564cef44cd26d84f98b88f39f2afe [file] [log] [blame]
Christoph Hellwig79b05c12018-07-31 13:39:26 +02001# SPDX-License-Identifier: GPL-2.0
2
Christoph Hellwigf1639772018-07-31 13:39:27 +02003menu "UML-specific options"
4
5config UML
6 bool
7 default y
Mickaël Salaüncb2c7d12021-04-22 17:41:17 +02008 select ARCH_EPHEMERAL_INODES
Christoph Hellwigf1639772018-07-31 13:39:27 +02009 select ARCH_HAS_KCOV
Christoph Hellwig87a4c372018-07-31 13:39:32 +020010 select ARCH_NO_PREEMPT
Christoph Hellwigf1639772018-07-31 13:39:27 +020011 select HAVE_ARCH_AUDITSYSCALL
12 select HAVE_ARCH_SECCOMP_FILTER
Masahiro Yamada2ff2b7e2019-08-19 14:54:20 +090013 select HAVE_ASM_MODVERSIONS
Christoph Hellwigf1639772018-07-31 13:39:27 +020014 select HAVE_UID16
15 select HAVE_FUTEX_CMPXCHG if FUTEX
16 select HAVE_DEBUG_KMEMLEAK
Hernán Gonzalez0d764332018-10-30 12:58:10 +010017 select HAVE_DEBUG_BUGVERBOSE
Johannes Berg68f5d3f2021-03-05 13:19:58 +010018 select NO_DMA if !UML_DMA_EMULATION
Christoph Hellwigf1639772018-07-31 13:39:27 +020019 select GENERIC_IRQ_SHOW
20 select GENERIC_CPU_DEVICES
Christoph Hellwigf1639772018-07-31 13:39:27 +020021 select HAVE_GCC_PLUGINS
Christoph Hellwig5e6e9852020-09-03 16:22:35 +020022 select SET_FS
Christoph Hellwigf1639772018-07-31 13:39:27 +020023 select TTY # Needed for line.c
24
25config MMU
26 bool
27 default y
28
Johannes Berg68f5d3f2021-03-05 13:19:58 +010029config UML_DMA_EMULATION
30 bool
31
Christoph Hellwigf1639772018-07-31 13:39:27 +020032config NO_IOMEM
Johannes Berg0bbadaf2021-03-05 13:19:51 +010033 bool "disable IOMEM" if EXPERT
Johannes Berg68f5d3f2021-03-05 13:19:58 +010034 depends on !INDIRECT_IOMEM
Johannes Berg0bbadaf2021-03-05 13:19:51 +010035 default y
36
Johannes Berg68f5d3f2021-03-05 13:19:58 +010037config UML_IOMEM_EMULATION
38 bool
39 select INDIRECT_IOMEM
40 select GENERIC_PCI_IOMAP
41 select GENERIC_IOMAP
42 select NO_GENERIC_PCI_IOPORT_MAP
43
Johannes Berg0bbadaf2021-03-05 13:19:51 +010044config NO_IOPORT_MAP
Christoph Hellwigf1639772018-07-31 13:39:27 +020045 def_bool y
46
47config ISA
48 bool
49
50config SBUS
51 bool
52
Christoph Hellwigf1639772018-07-31 13:39:27 +020053config TRACE_IRQFLAGS_SUPPORT
54 bool
55 default y
56
57config LOCKDEP_SUPPORT
58 bool
59 default y
60
61config STACKTRACE_SUPPORT
62 bool
63 default y
64 select STACKTRACE
65
66config GENERIC_CALIBRATE_DELAY
67 bool
68 default y
69
70config HZ
71 int
72 default 100
73
74config NR_CPUS
75 int
76 range 1 1
77 default 1
78
Christoph Hellwig79b05c12018-07-31 13:39:26 +020079source "arch/$(HEADER_ARCH)/um/Kconfig"
Christoph Hellwigf1639772018-07-31 13:39:27 +020080
Ignat Korchagin730586f2020-07-19 22:02:22 +010081config MAY_HAVE_RUNTIME_DEPS
82 bool
Brendan Higgins33631792020-01-24 14:14:01 -080083
Christoph Hellwigf1639772018-07-31 13:39:27 +020084config STATIC_LINK
85 bool "Force a static link"
Ignat Korchagin730586f2020-07-19 22:02:22 +010086 depends on CC_CAN_LINK_STATIC_NO_RUNTIME_DEPS || !MAY_HAVE_RUNTIME_DEPS
Christoph Hellwigf1639772018-07-31 13:39:27 +020087 help
88 This option gives you the ability to force a static link of UML.
89 Normally, UML is linked as a shared binary. This is inconvenient for
90 use in a chroot jail. So, if you intend to run UML inside a chroot,
91 you probably want to say Y here.
92 Additionally, this option enables using higher memory spaces (up to
93 2.75G) for UML.
94
Brendan Higgins33631792020-01-24 14:14:01 -080095 NOTE: This option is incompatible with some networking features which
96 depend on features that require being dynamically loaded (like NSS).
97
Christoph Hellwigf1639772018-07-31 13:39:27 +020098config LD_SCRIPT_STATIC
99 bool
100 default y
101 depends on STATIC_LINK
102
103config LD_SCRIPT_DYN
104 bool
105 default y
106 depends on !LD_SCRIPT_STATIC
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100107 select MODULE_REL_CRCS if MODVERSIONS
Christoph Hellwigf1639772018-07-31 13:39:27 +0200108
Johannes Berg386093c2021-03-08 14:02:37 +0100109config LD_SCRIPT_DYN_RPATH
110 bool "set rpath in the binary" if EXPERT
111 default y
112 depends on LD_SCRIPT_DYN
113 help
114 Add /lib (and /lib64 for 64-bit) to the linux binary's rpath
115 explicitly.
116
117 You may need to turn this off if compiling for nix systems
118 that have their libraries in random /nix directories and
119 might otherwise unexpected use libraries from /lib or /lib64
120 instead of the desired ones.
121
Christoph Hellwigf1639772018-07-31 13:39:27 +0200122config HOSTFS
123 tristate "Host filesystem"
124 help
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100125 While the User-Mode Linux port uses its own root file system for
126 booting and normal file access, this module lets the UML user
127 access files stored on the host. It does not require any
128 network connection between the Host and UML. An example use of
129 this might be:
Christoph Hellwigf1639772018-07-31 13:39:27 +0200130
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100131 mount none /tmp/fromhost -t hostfs -o /tmp/umlshare
Christoph Hellwigf1639772018-07-31 13:39:27 +0200132
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100133 where /tmp/fromhost is an empty directory inside UML and
134 /tmp/umlshare is a directory on the host with files the UML user
135 wishes to access.
Christoph Hellwigf1639772018-07-31 13:39:27 +0200136
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100137 For more information, see
138 <http://user-mode-linux.sourceforge.net/hostfs.html>.
Christoph Hellwigf1639772018-07-31 13:39:27 +0200139
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100140 If you'd like to be able to work with files stored on the host,
141 say Y or M here; otherwise say N.
Christoph Hellwigf1639772018-07-31 13:39:27 +0200142
143config MCONSOLE
144 bool "Management console"
145 depends on PROC_FS
146 default y
147 help
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100148 The user mode linux management console is a low-level interface to
149 the kernel, somewhat like the i386 SysRq interface. Since there is
150 a full-blown operating system running under every user mode linux
151 instance, there is much greater flexibility possible than with the
152 SysRq mechanism.
Christoph Hellwigf1639772018-07-31 13:39:27 +0200153
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100154 If you answer 'Y' to this option, to use this feature, you need the
155 mconsole client (called uml_mconsole) which is present in CVS in
156 2.4.5-9um and later (path /tools/mconsole), and is also in the
157 distribution RPM package in 2.4.6 and later.
Christoph Hellwigf1639772018-07-31 13:39:27 +0200158
Enrico Weigelt, metux IT consult37606592019-03-06 22:14:55 +0100159 It is safe to say 'Y' here.
Christoph Hellwigf1639772018-07-31 13:39:27 +0200160
161config MAGIC_SYSRQ
162 bool "Magic SysRq key"
163 depends on MCONSOLE
164 help
165 If you say Y here, you will have some control over the system even
166 if the system crashes for example during kernel debugging (e.g., you
167 will be able to flush the buffer cache to disk, reboot the system
168 immediately or dump some status information). A key for each of the
169 possible requests is provided.
170
171 This is the feature normally accomplished by pressing a key
172 while holding SysRq (Alt+PrintScreen).
173
174 On UML, this is accomplished by sending a "sysrq" command with
175 mconsole, followed by the letter for the requested command.
176
177 The keys are documented in <file:Documentation/admin-guide/sysrq.rst>. Don't say Y
178 unless you really know what this hack does.
179
180config KERNEL_STACK_ORDER
181 int "Kernel stack size order"
Anton Ivanov5c2ffce2019-01-04 15:38:21 +0000182 default 2 if 64BIT
183 range 2 10 if 64BIT
184 default 1 if !64BIT
Christoph Hellwigf1639772018-07-31 13:39:27 +0200185 help
186 This option determines the size of UML kernel stacks. They will
187 be 1 << order pages. The default is OK unless you're running Valgrind
188 on UML, in which case, set this to 3.
Anton Ivanov5c2ffce2019-01-04 15:38:21 +0000189 It is possible to reduce the stack to 1 for 64BIT and 0 for 32BIT on
190 older (pre-2017) CPUs. It is not recommended on newer CPUs due to the
191 increase in the size of the state which needs to be saved when handling
Krzysztof Kozlowski7d8093a2019-11-20 21:36:54 +0800192 signals.
Christoph Hellwigf1639772018-07-31 13:39:27 +0200193
194config MMAPPER
195 tristate "iomem emulation driver"
196 help
197 This driver allows a host file to be used as emulated IO memory inside
198 UML.
199
Christoph Hellwigf1639772018-07-31 13:39:27 +0200200config PGTABLE_LEVELS
201 int
202 default 3 if 3_LEVEL_PGTABLES
203 default 2
204
Johannes Berg06503872019-05-27 10:34:27 +0200205config UML_TIME_TRAVEL_SUPPORT
206 bool
207 prompt "Support time-travel mode (e.g. for test execution)"
Johannes Bergd65197a2019-12-13 10:01:28 +0100208 # inf-cpu mode is incompatible with the benchmarking
209 depends on !RAID6_PQ_BENCHMARK
Johannes Berg4b786e22020-02-13 14:26:45 +0100210 depends on !SMP
Johannes Berg06503872019-05-27 10:34:27 +0200211 help
212 Enable this option to support time travel inside the UML instance.
213
214 After enabling this option, two modes are accessible at runtime
215 (selected by the kernel command line), see the kernel's command-
216 line help for more details.
217
218 It is safe to say Y, but you probably don't need this.
219
Christoph Hellwigf1639772018-07-31 13:39:27 +0200220endmenu
221
Christoph Hellwig9bea1802018-07-31 13:39:28 +0200222source "arch/um/drivers/Kconfig"
Johannes Berg92dcd3d2020-12-02 20:58:06 +0100223
224config ARCH_SUSPEND_POSSIBLE
225 def_bool y
226
227source "kernel/power/Kconfig"