Date: Wed, 24 Sep 2025 23:24:50 GMT From: Colin Percival <cperciva@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 56e01d0d7e0f - main - release: Make toolchain OCI container use pkg set Message-ID: <202509242324.58ONOoYO001742@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by cperciva: URL: https://cgit.FreeBSD.org/src/commit/?id=56e01d0d7e0f7c2129c05467ca99d5f5538f52bc commit 56e01d0d7e0f7c2129c05467ca99d5f5538f52bc Author: Colin Percival <cperciva@FreeBSD.org> AuthorDate: 2025-09-24 23:12:57 +0000 Commit: Colin Percival <cperciva@FreeBSD.org> CommitDate: 2025-09-24 23:24:37 +0000 release: Make toolchain OCI container use pkg set This also indirectly addresses the lack of FreeBSD-lldb package on the riscv64 platform by relying on that package being part of the FreeBSD-set-devel set iff it exists. A subsequent commit will adjust the "notoolchain" OCI container image to also use a package set, which will indirectly affect the contents of the "toolchain" container (which is an explicit superset of the "notoolchain" container). MFC after: 1 day Co-authored-by: dch --- release/tools/oci-image-toolchain.conf | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/release/tools/oci-image-toolchain.conf b/release/tools/oci-image-toolchain.conf index b3b7eed8e8d1..984fb3fbfbfe 100644 --- a/release/tools/oci-image-toolchain.conf +++ b/release/tools/oci-image-toolchain.conf @@ -1,16 +1,11 @@ #! /bin/sh -# Build Open Container Initiative (OCI) container image with almost all of FreeBSD base.txz +# Build OCI container images with almost all packages for running and building FreeBSD. OCI_BASE_IMAGE=notoolchain oci_image_build() { set_cmd ${workdir} /bin/sh install_packages ${abi} ${workdir} \ - FreeBSD-clang \ - FreeBSD-ctf-tools \ - FreeBSD-lld \ - FreeBSD-lldb \ - FreeBSD-toolchain \ - FreeBSD-*-dev + FreeBSD-set-devel }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202509242324.58ONOoYO001742>