git: 8eeeee38f4c5 - main - tools: boot: use four jobs for building stand
Kyle Evans
kevans at FreeBSD.org
Sun Jan 31 16:11:54 UTC 2021
The branch main has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=8eeeee38f4c5b2b48d03f3c5a3fa678962e8c9ed
commit 8eeeee38f4c5b2b48d03f3c5a3fa678962e8c9ed
Author: Kyle Evans <kevans at FreeBSD.org>
AuthorDate: 2021-01-31 16:07:31 +0000
Commit: Kyle Evans <kevans at FreeBSD.org>
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
More information about the dev-commits-src-all
mailing list