The branch main has been updated by jlduran: URL: https://cgit.FreeBSD.org/src/commit/?id=8832f767d6aeba37b2e957626d24de1f06890a0c
commit 8832f767d6aeba37b2e957626d24de1f06890a0c Author: Jose Luis Duran <[email protected]> AuthorDate: 2026-01-17 18:10:22 +0000 Commit: Jose Luis Duran <[email protected]> CommitDate: 2026-01-17 18:10:22 +0000 nanobsd: Add a provisional populate /data function Add a provisional _populate_data_part function. It populates the optional /data partition, but using makefs(8), which is more in-line with what release engineering uses to create images. Reviewed by: emaste MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D48792 --- tools/tools/nanobsd/defaults.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/tools/nanobsd/defaults.sh b/tools/tools/nanobsd/defaults.sh index c0683259786a..bb22ab9a0aa4 100755 --- a/tools/tools/nanobsd/defaults.sh +++ b/tools/tools/nanobsd/defaults.sh @@ -780,6 +780,10 @@ populate_data_slice() { populate_slice "$1" "$2" "$3" "$4" } +_populate_data_part() { + _populate_part "data" "$1" "$2" "$3" "$4" "$5" +} + last_orders() { # Redefine this function with any last orders you may have # after the build completed, for instance to copy the finished
