Date: Fri, 12 Jun 2026 18:22:13 +0000 From: Krzysztof Galazka <kgalazka@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 4ea4116f8d20 - main - vmimage.subr: Add ability to install src in VM image Message-ID: <6a2c4e55.44d2f.19db7e31@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by kgalazka: URL: https://cgit.FreeBSD.org/src/commit/?id=4ea4116f8d2069194563c8692c1f28d88c319ca8 commit 4ea4116f8d2069194563c8692c1f28d88c319ca8 Author: Krzysztof Galazka <kgalazka@FreeBSD.org> AuthorDate: 2026-06-12 18:21:14 +0000 Commit: Krzysztof Galazka <kgalazka@FreeBSD.org> CommitDate: 2026-06-12 18:21:48 +0000 vmimage.subr: Add ability to install src in VM image In some cases having a src tree in a VM image is convenient for development or debugging. Add a WITH_SRC variable, which, when set, will cause the vm-release target to include FreeBSD-set-src in the list of packages installed in an image. Signed-off-by: Krzysztof Galazka <krzysztof.galazka@intel.com> Sponsored by: Intel Corporation Reviewed by: cperciva MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D57143 --- release/tools/vmimage.subr | 1 + 1 file changed, 1 insertion(+) diff --git a/release/tools/vmimage.subr b/release/tools/vmimage.subr index 56acbc359936..462f0653f8a4 100644 --- a/release/tools/vmimage.subr +++ b/release/tools/vmimage.subr @@ -81,6 +81,7 @@ vm_base_packages_list() { echo FreeBSD-set-lib32 [ -z "${WITHOUT_DEBUG_FILES}" ] && echo FreeBSD-set-lib32-dbg esac + [ -n "${WITH_SRC}" ] && echo FreeBSD-set-src echo FreeBSD-set-tests # Also install pkg, since systems with a packaged base system should # have the tools to upgrade themselves.home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a2c4e55.44d2f.19db7e31>
