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 19bc745 commit 9c50df6Copy full SHA for 9c50df6
build.sh
@@ -326,8 +326,9 @@ function pack {
326
function pack_debs {
327
get_version
328
echo "pack linux-headers, linux-image, linux-libc-dev debs..."
329
- echo "LOCALVERSION=${gitbranch} board=$board ARCH=$ARCH CROSS_COMPILE=$CROSS_COMPILE"
330
- 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
331
+ if [[ $? -ne 0 ]];then exit 1;fi;
332
ls ../*.deb
333
}
334
0 commit comments