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 |
| 8 | select ARCH_HAS_KCOV |
Christoph Hellwig | 87a4c37 | 2018-07-31 13:39:32 +0200 | [diff] [blame] | 9 | select ARCH_NO_PREEMPT |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 10 | select HAVE_ARCH_AUDITSYSCALL |
| 11 | select HAVE_ARCH_SECCOMP_FILTER |
Masahiro Yamada | 2ff2b7e | 2019-08-19 14:54:20 +0900 | [diff] [blame] | 12 | select HAVE_ASM_MODVERSIONS |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 13 | select HAVE_UID16 |
| 14 | select HAVE_FUTEX_CMPXCHG if FUTEX |
| 15 | select HAVE_DEBUG_KMEMLEAK |
HernĂ¡n Gonzalez | 0d76433 | 2018-10-30 12:58:10 +0100 | [diff] [blame] | 16 | select HAVE_DEBUG_BUGVERBOSE |
Amanieu d'Antras | 457677c | 2020-01-04 13:39:30 +0100 | [diff] [blame] | 17 | select HAVE_COPY_THREAD_TLS |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 18 | select GENERIC_IRQ_SHOW |
| 19 | select GENERIC_CPU_DEVICES |
| 20 | select GENERIC_CLOCKEVENTS |
| 21 | select HAVE_GCC_PLUGINS |
| 22 | select TTY # Needed for line.c |
| 23 | |
| 24 | config MMU |
| 25 | bool |
| 26 | default y |
| 27 | |
| 28 | config NO_IOMEM |
| 29 | def_bool y |
| 30 | |
| 31 | config ISA |
| 32 | bool |
| 33 | |
| 34 | config SBUS |
| 35 | bool |
| 36 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 37 | config TRACE_IRQFLAGS_SUPPORT |
| 38 | bool |
| 39 | default y |
| 40 | |
| 41 | config LOCKDEP_SUPPORT |
| 42 | bool |
| 43 | default y |
| 44 | |
| 45 | config STACKTRACE_SUPPORT |
| 46 | bool |
| 47 | default y |
| 48 | select STACKTRACE |
| 49 | |
| 50 | config GENERIC_CALIBRATE_DELAY |
| 51 | bool |
| 52 | default y |
| 53 | |
| 54 | config HZ |
| 55 | int |
| 56 | default 100 |
| 57 | |
| 58 | config NR_CPUS |
| 59 | int |
| 60 | range 1 1 |
| 61 | default 1 |
| 62 | |
Christoph Hellwig | 79b05c1 | 2018-07-31 13:39:26 +0200 | [diff] [blame] | 63 | source "arch/$(HEADER_ARCH)/um/Kconfig" |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 64 | |
| 65 | config STATIC_LINK |
| 66 | bool "Force a static link" |
| 67 | default n |
| 68 | help |
| 69 | This option gives you the ability to force a static link of UML. |
| 70 | Normally, UML is linked as a shared binary. This is inconvenient for |
| 71 | use in a chroot jail. So, if you intend to run UML inside a chroot, |
| 72 | you probably want to say Y here. |
| 73 | Additionally, this option enables using higher memory spaces (up to |
| 74 | 2.75G) for UML. |
| 75 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 76 | config LD_SCRIPT_STATIC |
| 77 | bool |
| 78 | default y |
| 79 | depends on STATIC_LINK |
| 80 | |
| 81 | config LD_SCRIPT_DYN |
| 82 | bool |
| 83 | default y |
| 84 | depends on !LD_SCRIPT_STATIC |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 85 | select MODULE_REL_CRCS if MODVERSIONS |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 86 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 87 | config HOSTFS |
| 88 | tristate "Host filesystem" |
| 89 | help |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 90 | While the User-Mode Linux port uses its own root file system for |
| 91 | booting and normal file access, this module lets the UML user |
| 92 | access files stored on the host. It does not require any |
| 93 | network connection between the Host and UML. An example use of |
| 94 | this might be: |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 95 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 96 | mount none /tmp/fromhost -t hostfs -o /tmp/umlshare |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 97 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 98 | where /tmp/fromhost is an empty directory inside UML and |
| 99 | /tmp/umlshare is a directory on the host with files the UML user |
| 100 | wishes to access. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 101 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 102 | For more information, see |
| 103 | <http://user-mode-linux.sourceforge.net/hostfs.html>. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 104 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 105 | If you'd like to be able to work with files stored on the host, |
| 106 | say Y or M here; otherwise say N. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 107 | |
| 108 | config MCONSOLE |
| 109 | bool "Management console" |
| 110 | depends on PROC_FS |
| 111 | default y |
| 112 | help |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 113 | The user mode linux management console is a low-level interface to |
| 114 | the kernel, somewhat like the i386 SysRq interface. Since there is |
| 115 | a full-blown operating system running under every user mode linux |
| 116 | instance, there is much greater flexibility possible than with the |
| 117 | SysRq mechanism. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 118 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 119 | If you answer 'Y' to this option, to use this feature, you need the |
| 120 | mconsole client (called uml_mconsole) which is present in CVS in |
| 121 | 2.4.5-9um and later (path /tools/mconsole), and is also in the |
| 122 | distribution RPM package in 2.4.6 and later. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 123 | |
Enrico Weigelt, metux IT consult | 3760659 | 2019-03-06 22:14:55 +0100 | [diff] [blame] | 124 | It is safe to say 'Y' here. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 125 | |
| 126 | config MAGIC_SYSRQ |
| 127 | bool "Magic SysRq key" |
| 128 | depends on MCONSOLE |
| 129 | help |
| 130 | If you say Y here, you will have some control over the system even |
| 131 | if the system crashes for example during kernel debugging (e.g., you |
| 132 | will be able to flush the buffer cache to disk, reboot the system |
| 133 | immediately or dump some status information). A key for each of the |
| 134 | possible requests is provided. |
| 135 | |
| 136 | This is the feature normally accomplished by pressing a key |
| 137 | while holding SysRq (Alt+PrintScreen). |
| 138 | |
| 139 | On UML, this is accomplished by sending a "sysrq" command with |
| 140 | mconsole, followed by the letter for the requested command. |
| 141 | |
| 142 | The keys are documented in <file:Documentation/admin-guide/sysrq.rst>. Don't say Y |
| 143 | unless you really know what this hack does. |
| 144 | |
| 145 | config KERNEL_STACK_ORDER |
| 146 | int "Kernel stack size order" |
Anton Ivanov | 5c2ffce | 2019-01-04 15:38:21 +0000 | [diff] [blame] | 147 | default 2 if 64BIT |
| 148 | range 2 10 if 64BIT |
| 149 | default 1 if !64BIT |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 150 | help |
| 151 | This option determines the size of UML kernel stacks. They will |
| 152 | be 1 << order pages. The default is OK unless you're running Valgrind |
| 153 | on UML, in which case, set this to 3. |
Anton Ivanov | 5c2ffce | 2019-01-04 15:38:21 +0000 | [diff] [blame] | 154 | It is possible to reduce the stack to 1 for 64BIT and 0 for 32BIT on |
| 155 | older (pre-2017) CPUs. It is not recommended on newer CPUs due to the |
| 156 | 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] | 157 | signals. |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 158 | |
| 159 | config MMAPPER |
| 160 | tristate "iomem emulation driver" |
| 161 | help |
| 162 | This driver allows a host file to be used as emulated IO memory inside |
| 163 | UML. |
| 164 | |
| 165 | config NO_DMA |
| 166 | def_bool y |
| 167 | |
| 168 | config PGTABLE_LEVELS |
| 169 | int |
| 170 | default 3 if 3_LEVEL_PGTABLES |
| 171 | default 2 |
| 172 | |
| 173 | config SECCOMP |
| 174 | def_bool y |
| 175 | prompt "Enable seccomp to safely compute untrusted bytecode" |
| 176 | ---help--- |
| 177 | This kernel feature is useful for number crunching applications |
| 178 | that may need to compute untrusted bytecode during their |
| 179 | execution. By using pipes or other transports made available to |
| 180 | the process as file descriptors supporting the read/write |
| 181 | syscalls, it's possible to isolate those applications in |
| 182 | their own address space using seccomp. Once seccomp is |
| 183 | enabled via prctl(PR_SET_SECCOMP), it cannot be disabled |
| 184 | and the task is only allowed to execute a few safe syscalls |
| 185 | defined by each seccomp mode. |
| 186 | |
| 187 | If unsure, say Y. |
| 188 | |
Johannes Berg | 0650387 | 2019-05-27 10:34:27 +0200 | [diff] [blame] | 189 | config UML_TIME_TRAVEL_SUPPORT |
| 190 | bool |
| 191 | prompt "Support time-travel mode (e.g. for test execution)" |
Johannes Berg | d65197a | 2019-12-13 10:01:28 +0100 | [diff] [blame] | 192 | # inf-cpu mode is incompatible with the benchmarking |
| 193 | depends on !RAID6_PQ_BENCHMARK |
Johannes Berg | 4b786e2 | 2020-02-13 14:26:45 +0100 | [diff] [blame^] | 194 | depends on !SMP |
Johannes Berg | 0650387 | 2019-05-27 10:34:27 +0200 | [diff] [blame] | 195 | help |
| 196 | Enable this option to support time travel inside the UML instance. |
| 197 | |
| 198 | After enabling this option, two modes are accessible at runtime |
| 199 | (selected by the kernel command line), see the kernel's command- |
| 200 | line help for more details. |
| 201 | |
| 202 | It is safe to say Y, but you probably don't need this. |
| 203 | |
Christoph Hellwig | f163977 | 2018-07-31 13:39:27 +0200 | [diff] [blame] | 204 | endmenu |
| 205 | |
Christoph Hellwig | 9bea180 | 2018-07-31 13:39:28 +0200 | [diff] [blame] | 206 | source "arch/um/drivers/Kconfig" |