We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebbad7 commit 880fdc6Copy full SHA for 880fdc6
build.sh
@@ -331,8 +331,9 @@ function pack {
331
function pack_debs {
332
get_version
333
echo "pack linux-headers, linux-image, linux-libc-dev debs..."
334
- echo "LOCALVERSION=${gitbranch} board=$board ARCH=$ARCH CROSS_COMPILE=$CROSS_COMPILE"
335
- LOCALVERSION="${gitbranch}" board="$board" KDEB_COMPRESS=gzip make bindeb-pkg
+ echo "LOCALVERSION=${gitbranch} board=$board ARCH=$ARCH CROSS_COMPILE=$CROSS_COMPILE"
+ LOCALVERSION="${gitbranch}" board="$board" KDEB_COMPRESS=gzip make -j${numproc} bindeb-pkg
336
+ if [[ $? -ne 0 ]];then exit 1;fi;
337
ls ../*.deb
338
}
339
0 commit comments