From 49d75d93206a9f3e92a5c6ff9cddb80c6cf77581 Mon Sep 17 00:00:00 2001 From: zxbv3 Date: Thu, 29 Jan 2026 06:07:57 +0000 Subject: [PATCH] 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 80d215d0e82..5e65f0f998c 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"])