Christoph Hellwig | 79b05c1 | 2018-07-31 13:39:26 +0200 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 3 | menu "UML-specific options" |
| 4 | |
| 5 | config UML |
| 6 | bool |
| 7 | default y |
Mickaël Salaün | cb2c7d1 | 2021-04-22 17:41:17 +0200 | [diff] [blame] | 8 | select ARCH_EPHEMERAL_INODES |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 9 | select ARCH_HAS_KCOV |
Arnd Bergmann | e622699 | 2021-05-17 09:22:34 +0200 | [diff] [blame] | 10 | select ARCH_HAS_STRNCPY_FROM_USER |
| 11 | select ARCH_HAS_STRNLEN_USER |
Christoph Hellwig | 87a4c37 | 2018-07-31 13:39:32 +0200 | [diff] [blame] | 12 | select ARCH_NO_PREEMPT |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 13 | select HAVE_ARCH_AUDITSYSCALL |
| 14 | select HAVE_ARCH_SECCOMP_FILTER |
Masahiro Yamada | 2ff2b7e | 2019-08-19 14:54:20 +0900 | [diff] [blame] | 15 | select HAVE_ASM_MODVERSIONS |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 16 | select HAVE_UID16 |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 17 | select HAVE_DEBUG_KMEMLEAK |
Hernán Gonzalez | 0d76433 | 2018-10-30 12:58:10 +0100 | [diff] [blame] | 18 | select HAVE_DEBUG_BUGVERBOSE |
Johannes Berg | 68f5d3f | 2021-03-05 13:19:58 +0100 | [diff] [blame] | 19 | select NO_DMA if !UML_DMA_EMULATION |
Vincent Whitchurch | b31297f | 2021-12-08 16:11:23 +0100 | [diff] [blame] | 20 | select OF_EARLY_FLATTREE if OF |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 21 | select GENERIC_IRQ_SHOW |
| 22 | select GENERIC_CPU_DEVICES |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 23 | select HAVE_GCC_PLUGINS |
Masahiro Yamada | 4aae683 | 2021-07-31 14:22:32 +0900 | [diff] [blame] | 24 | select TRACE_IRQFLAGS_SUPPORT |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 25 | select TTY # Needed for line.c |
Johannes Berg | bc5c49d | 2021-08-11 16:58:26 +0200 | [diff] [blame] | 26 | select HAVE_ARCH_VMAP_STACK |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 27 | |
| 28 | config MMU |
| 29 | bool |
| 30 | default y |
| 31 | |
Johannes Berg | 68f5d3f | 2021-03-05 13:19:58 +0100 | [diff] [blame] | 32 | config UML_DMA_EMULATION |
| 33 | bool |
| 34 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 35 | config NO_IOMEM |
Johannes Berg | 0bbadaf | 2021-03-05 13:19:51 +0100 | [diff] [blame] | 36 | bool "disable IOMEM" if EXPERT |
Johannes Berg | 68f5d3f | 2021-03-05 13:19:58 +0100 | [diff] [blame] | 37 | depends on !INDIRECT_IOMEM |
Johannes Berg | 0bbadaf | 2021-03-05 13:19:51 +0100 | [diff] [blame] | 38 | default y |
| 39 | |
Johannes Berg | 68f5d3f | 2021-03-05 13:19:58 +0100 | [diff] [blame] | 40 | config UML_IOMEM_EMULATION |
| 41 | bool |
| 42 | select INDIRECT_IOMEM |
| 43 | select GENERIC_PCI_IOMAP |
| 44 | select GENERIC_IOMAP |
| 45 | select NO_GENERIC_PCI_IOPORT_MAP |
| 46 | |
Johannes Berg | 0bbadaf | 2021-03-05 13:19:51 +0100 | [diff] [blame] | 47 | config NO_IOPORT_MAP |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 48 | def_bool y |
| 49 | |
| 50 | config ISA |
| 51 | bool |
| 52 | |
| 53 | config SBUS |
| 54 | bool |
| 55 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 56 | config LOCKDEP_SUPPORT |
| 57 | bool |
| 58 | default y |
| 59 | |
| 60 | config STACKTRACE_SUPPORT |
| 61 | bool |
| 62 | default y |
| 63 | select STACKTRACE |
| 64 | |
| 65 | config GENERIC_CALIBRATE_DELAY |
| 66 | bool |
| 67 | default y |
| 68 | |
| 69 | config HZ |
| 70 | int |
| 71 | default 100 |
| 72 | |
| 73 | config NR_CPUS |
| 74 | int |
| 75 | range 1 1 |
| 76 | default 1 |
| 77 | |
Anton Ivanov | d8fb32f4 | 2021-03-12 15:16:07 +0000 | [diff] [blame] | 78 | config ARCH_HAS_CACHE_LINE_SIZE |
| 79 | def_bool y |
| 80 | |
Christoph Hellwig | 79b05c1 | 2018-07-31 13:39:26 +0200 | [diff] [blame] | 81 | source "arch/$(HEADER_ARCH)/um/Kconfig" |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 82 | |
Ignat Korchagin | 730586f | 2020-07-19 22:02:22 +0100 | [diff] [blame] | 83 | config MAY_HAVE_RUNTIME_DEPS |
| 84 | bool |
Brendan Higgins | 3363179 | 2020-01-24 14:14:01 -0800 | [diff] [blame] | 85 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 86 | config STATIC_LINK |
| 87 | bool "Force a static link" |
Ignat Korchagin | 730586f | 2020-07-19 22:02:22 +0100 | [diff] [blame] | 88 | depends on CC_CAN_LINK_STATIC_NO_RUNTIME_DEPS || !MAY_HAVE_RUNTIME_DEPS |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 89 | help |
| 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 |
| 95 | 2.75G) for UML. |
| 96 | |
Brendan Higgins | 3363179 | 2020-01-24 14:14:01 -0800 | [diff] [blame] | 97 | NOTE: This option is incompatible with some networking features which |
| 98 | depend on features that require being dynamically loaded (like NSS). |
| 99 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 100 | config LD_SCRIPT_STATIC |
| 101 | bool |
| 102 | default y |
| 103 | depends on STATIC_LINK |
| 104 | |
| 105 | config LD_SCRIPT_DYN |
| 106 | bool |
| 107 | default y |
| 108 | depends on !LD_SCRIPT_STATIC |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 109 | select MODULE_REL_CRCS if MODVERSIONS |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 110 | |
Johannes Berg | 386093c | 2021-03-08 14:02:37 +0100 | [diff] [blame] | 111 | config LD_SCRIPT_DYN_RPATH |
| 112 | bool "set rpath in the binary" if EXPERT |
| 113 | default y |
| 114 | depends on LD_SCRIPT_DYN |
| 115 | help |
| 116 | Add /lib (and /lib64 for 64-bit) to the linux binary's rpath |
| 117 | explicitly. |
| 118 | |
| 119 | You may need to turn this off if compiling for nix systems |
| 120 | that have their libraries in random /nix directories and |
| 121 | might otherwise unexpected use libraries from /lib or /lib64 |
| 122 | instead of the desired ones. |
| 123 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 124 | config HOSTFS |
| 125 | tristate "Host filesystem" |
| 126 | help |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 127 | While the User-Mode Linux port uses its own root file system for |
| 128 | booting and normal file access, this module lets the UML user |
| 129 | access files stored on the host. It does not require any |
| 130 | network connection between the Host and UML. An example use of |
| 131 | this might be: |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 132 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 133 | mount none /tmp/fromhost -t hostfs -o /tmp/umlshare |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 134 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 135 | where /tmp/fromhost is an empty directory inside UML and |
| 136 | /tmp/umlshare is a directory on the host with files the UML user |
| 137 | wishes to access. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 138 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 139 | For more information, see |
| 140 | <http://user-mode-linux.sourceforge.net/hostfs.html>. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 141 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 142 | If you'd like to be able to work with files stored on the host, |
| 143 | say Y or M here; otherwise say N. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 144 | |
| 145 | config MCONSOLE |
| 146 | bool "Management console" |
| 147 | depends on PROC_FS |
| 148 | default y |
| 149 | help |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 150 | The user mode linux management console is a low-level interface to |
| 151 | the kernel, somewhat like the i386 SysRq interface. Since there is |
| 152 | a full-blown operating system running under every user mode linux |
| 153 | instance, there is much greater flexibility possible than with the |
| 154 | SysRq mechanism. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 155 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 156 | If you answer 'Y' to this option, to use this feature, you need the |
| 157 | mconsole client (called uml_mconsole) which is present in CVS in |
| 158 | 2.4.5-9um and later (path /tools/mconsole), and is also in the |
| 159 | distribution RPM package in 2.4.6 and later. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 160 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 161 | It is safe to say 'Y' here. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 162 | |
| 163 | config MAGIC_SYSRQ |
| 164 | bool "Magic SysRq key" |
| 165 | depends on MCONSOLE |
| 166 | help |
| 167 | If you say Y here, you will have some control over the system even |
| 168 | if the system crashes for example during kernel debugging (e.g., you |
| 169 | will be able to flush the buffer cache to disk, reboot the system |
| 170 | immediately or dump some status information). A key for each of the |
| 171 | possible requests is provided. |
| 172 | |
| 173 | This is the feature normally accomplished by pressing a key |
| 174 | while holding SysRq (Alt+PrintScreen). |
| 175 | |
| 176 | On UML, this is accomplished by sending a "sysrq" command with |
| 177 | mconsole, followed by the letter for the requested command. |
| 178 | |
| 179 | The keys are documented in <file:Documentation/admin-guide/sysrq.rst>. Don't say Y |
| 180 | unless you really know what this hack does. |
| 181 | |
| 182 | config KERNEL_STACK_ORDER |
| 183 | int "Kernel stack size order" |
Anton Ivanov | 5c2ffce | 2019-01-04 15:38:21 +0000 | [diff] [blame] | 184 | default 2 if 64BIT |
| 185 | range 2 10 if 64BIT |
| 186 | default 1 if !64BIT |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 187 | help |
| 188 | This option determines the size of UML kernel stacks. They will |
| 189 | be 1 << order pages. The default is OK unless you're running Valgrind |
| 190 | on UML, in which case, set this to 3. |
Anton Ivanov | 5c2ffce | 2019-01-04 15:38:21 +0000 | [diff] [blame] | 191 | It is possible to reduce the stack to 1 for 64BIT and 0 for 32BIT on |
| 192 | older (pre-2017) CPUs. It is not recommended on newer CPUs due to the |
| 193 | increase in the size of the state which needs to be saved when handling |
Krzysztof Kozlowski | 7d8093a | 2019-11-20 21:36:54 +0800 | [diff] [blame] | 194 | signals. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 195 | |
| 196 | config MMAPPER |
| 197 | tristate "iomem emulation driver" |
| 198 | help |
| 199 | This driver allows a host file to be used as emulated IO memory inside |
| 200 | UML. |
| 201 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 202 | config PGTABLE_LEVELS |
| 203 | int |
| 204 | default 3 if 3_LEVEL_PGTABLES |
| 205 | default 2 |
| 206 | |
Johannes Berg | 0650387 | 2019-05-27 10:34:27 +0200 | [diff] [blame] | 207 | config UML_TIME_TRAVEL_SUPPORT |
| 208 | bool |
| 209 | prompt "Support time-travel mode (e.g. for test execution)" |
Johannes Berg | d65197a | 2019-12-13 10:01:28 +0100 | [diff] [blame] | 210 | # inf-cpu mode is incompatible with the benchmarking |
| 211 | depends on !RAID6_PQ_BENCHMARK |
Johannes Berg | 4b786e2 | 2020-02-13 14:26:45 +0100 | [diff] [blame] | 212 | depends on !SMP |
Johannes Berg | 0650387 | 2019-05-27 10:34:27 +0200 | [diff] [blame] | 213 | help |
| 214 | Enable this option to support time travel inside the UML instance. |
| 215 | |
| 216 | After enabling this option, two modes are accessible at runtime |
| 217 | (selected by the kernel command line), see the kernel's command- |
| 218 | line help for more details. |
| 219 | |
| 220 | It is safe to say Y, but you probably don't need this. |
| 221 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 222 | endmenu |
| 223 | |
Christoph Hellwig | 9bea180 | 2018-07-31 13:39:28 +0200 | [diff] [blame] | 224 | source "arch/um/drivers/Kconfig" |
Johannes Berg | 92dcd3d | 2020-12-02 20:58:06 +0100 | [diff] [blame] | 225 | |
| 226 | config ARCH_SUSPEND_POSSIBLE |
| 227 | def_bool y |
| 228 | |
| 229 | source "kernel/power/Kconfig" |