The branch main has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=8eeeee38f4c5b2b48d03f3c5a3fa678962e8c9ed
commit 8eeeee38f4c5b2b48d03f3c5a3fa678962e8c9ed Author: Kyle Evans <[email protected]> AuthorDate: 2021-01-31 16:07:31 +0000 Commit: Kyle Evans <[email protected]> CommitDate: 2021-01-31 16:11:41 +0000 tools: boot: use four jobs for building stand Parallel builds of stand should be assumed both possible and safe as of 7012461c9bf6, so let's start using some jobs to speed up lualoader test harness builds. --- tools/boot/lua-img.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/boot/lua-img.sh b/tools/boot/lua-img.sh index 9693c726501d..85e4cfc304d9 100755 --- a/tools/boot/lua-img.sh +++ b/tools/boot/lua-img.sh @@ -21,6 +21,6 @@ mkdir -p ${dir} mtree -deUW -f etc/mtree/BSD.root.dist -p ${dir} mtree -deUW -f etc/mtree/BSD.usr.dist -p ${dir}/usr cd stand -make all install DESTDIR=${dir} NO_ROOT=t MK_LOADER_LUA=yes MK_FORTH=no MK_INSTALL_AS_USER=yes +make -j4 all install DESTDIR=${dir} NO_ROOT=t MK_LOADER_LUA=yes MK_FORTH=no MK_INSTALL_AS_USER=yes mkdir -p ${dir}/boot/kernel cp /boot/kernel/kernel ${dir}/boot/kernel _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main To unsubscribe, send any mail to "[email protected]"
