The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=ce348fe5cfc36c454db860f0e5cd26f094deb09c
commit ce348fe5cfc36c454db860f0e5cd26f094deb09c Author: Mina Galić <[email protected]> AuthorDate: 2024-02-03 00:35:18 +0000 Commit: Warner Losh <[email protected]> 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
