]> git.hungrycats.org Git - linux/commitdiff
zygo: build-kernel: time the build zygo-6.10.x-zb64
authorZygo Blaxell <ce3g8jdj@umail.furryterror.org>
Sat, 26 Oct 2024 03:35:27 +0000 (23:35 -0400)
committerZygo Blaxell <ce3g8jdj@umail.furryterror.org>
Sat, 26 Oct 2024 03:35:27 +0000 (23:35 -0400)
zygo/build-kernel

index ced39dadeff90bafdbef0c63ff48f7b3e3547e5d..22ce0839ac7ffc14a13edd9b2fc9149f09d6956c 100755 (executable)
@@ -37,9 +37,9 @@ fi
 cpuCount="$(grep -c '^processor' /proc/cpuinfo || echo 1)"
 
 if [ -n "$NO_MODULES" ]; then
-       make -j$((cpuCount*2)) "$@" EXTRAVERSION="$EXTRAVERSION" bzImage scripts_gdb || exit $?
+       time make -j$((cpuCount*2)) "$@" EXTRAVERSION="$EXTRAVERSION" bzImage scripts_gdb || exit $?
 else
-       make -j$((cpuCount*2)) "$@" EXTRAVERSION="$EXTRAVERSION" bzImage modules scripts_gdb \
+       time make -j$((cpuCount*2)) "$@" EXTRAVERSION="$EXTRAVERSION" bzImage modules scripts_gdb \
                INSTALL_MOD_PATH="$(realpath ../root)" modules_install || exit $?
 fi