diff options
| author | zxbv3 <zx@bv3.dev> | 2026-01-27 16:24:14 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2026-02-01 21:51:10 +0000 |
| commit | 638fb31a75f69d8ed243a93eea0aa4a7510916f9 (patch) | |
| tree | c432646a06331272506f3e5023a76ec9d384d6fc /release/scripts | |
| parent | 37bba2ad92d8fa81d70f7a8243b2f42981f44454 (diff) | |
Diffstat (limited to 'release/scripts')
| -rwxr-xr-x | release/scripts/pkgbase-stage.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/pkgbase-stage.lua b/release/scripts/pkgbase-stage.lua index efc4f8af0cbf..80d215d0e82f 100755 --- a/release/scripts/pkgbase-stage.lua +++ b/release/scripts/pkgbase-stage.lua @@ -46,12 +46,14 @@ local function select_packages(pkg, media, all_libcompats) end assert(components["kernel"]) assert(components["base"]) + assert(components["base-jail"]) assert(components["pkg"]) local selected = {} if media == "disc" then table.insert(selected, components["pkg"]) table.insert(selected, components["base"]) + table.insert(selected, components["base-jail"]) table.insert(selected, components["kernel"]) table.insert(selected, components["kernel-dbg"]) table.insert(selected, components["src"]) @@ -63,6 +65,7 @@ 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["kernel"]) table.insert(selected, components["kernel-dbg"]) |
