From 8eeeee38f4c5b2b48d03f3c5a3fa678962e8c9ed Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Sun, 31 Jan 2021 10:07:31 -0600 Subject: [PATCH] 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