Date: Sat, 3 Feb 2024 01:36:26 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: ce348fe5cfc3 - main - amd64 & i386: enable VIMAGE in MINIMAL Message-ID: <202402030136.4131aQIM010980@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=ce348fe5cfc36c454db860f0e5cd26f094deb09c commit ce348fe5cfc36c454db860f0e5cd26f094deb09c Author: Mina Galić <freebsd@igalic.co> AuthorDate: 2024-02-03 00:35:18 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-02-03 01:35:00 +0000 amd64 & i386: enable VIMAGE in MINIMAL VNET(9) is very useful, and is not loadable. Enable it in MINIMAL. Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/962 --- sys/amd64/conf/MINIMAL | 1 + sys/i386/conf/MINIMAL | 1 + 2 files changed, 2 insertions(+) diff --git a/sys/amd64/conf/MINIMAL b/sys/amd64/conf/MINIMAL index 11f0d5d10c78..fb6d75a2ae1a 100644 --- a/sys/amd64/conf/MINIMAL +++ b/sys/amd64/conf/MINIMAL @@ -36,6 +36,7 @@ makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support options SCHED_ULE # ULE scheduler options NUMA # Non-Uniform Memory Architecture support options PREEMPTION # Enable kernel thread preemption +options VIMAGE # Subsystem virtualization, e.g. VNET options INET # InterNETworking options INET6 # IPv6 communications protocols options TCP_OFFLOAD # TCP offload diff --git a/sys/i386/conf/MINIMAL b/sys/i386/conf/MINIMAL index d8c43d37fbce..e27bb68e31fe 100644 --- a/sys/i386/conf/MINIMAL +++ b/sys/i386/conf/MINIMAL @@ -41,6 +41,7 @@ makeoptions WITH_CTF=1 # Run ctfconvert(1) for DTrace support options SCHED_ULE # ULE scheduler options PREEMPTION # Enable kernel thread preemption +options VIMAGE # Subsystem virtualization, e.g. VNET options INET # InterNETworking options INET6 # IPv6 communications protocols options TCP_OFFLOAD # TCP offload
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402030136.4131aQIM010980>