The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=49d75d93206a9f3e92a5c6ff9cddb80c6cf77581
commit 49d75d93206a9f3e92a5c6ff9cddb80c6cf77581 Author: zxbv3 <[email protected]> AuthorDate: 2026-01-29 06:07:57 +0000 Commit: Warner Losh <[email protected]> CommitDate: 2026-02-01 21:51:11 +0000 pkgbase-stage.lua: Add '*-jail-dbg' variant to dvd1 - Add *-jail-dbg variant to dvd1 to match the non-jail variant; - Remove assertion introduced in the previous commit for consistency with existing code. Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/1991 --- release/scripts/pkgbase-stage.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/scripts/pkgbase-stage.lua b/release/scripts/pkgbase-stage.lua index 80d215d0e82f..5e65f0f998c6 100755 --- a/release/scripts/pkgbase-stage.lua +++ b/release/scripts/pkgbase-stage.lua @@ -46,7 +46,6 @@ local function select_packages(pkg, media, all_libcompats) end assert(components["kernel"]) assert(components["base"]) - assert(components["base-jail"]) assert(components["pkg"]) local selected = {} @@ -65,8 +64,9 @@ local function select_packages(pkg, media, all_libcompats) assert(media == "dvd") table.insert(selected, components["pkg"]) table.insert(selected, components["base"]) - table.insert(selected, components["base-jail"]) table.insert(selected, components["base-dbg"]) + table.insert(selected, components["base-jail"]) + table.insert(selected, components["base-jail-dbg"]) table.insert(selected, components["kernel"]) table.insert(selected, components["kernel-dbg"]) table.insert(selected, components["src"])
