aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/build b/build
index db7a350b366..8f0b500d0a7 100755
--- a/build
+++ b/build
@@ -14,6 +14,8 @@
# this radically speeds up swapping between build contexts. Note the config
# for each build lives in the subdir.
+PARALLEL=16
+
if [ -z "$1" ] ; then
echo "Specify the build subdir, eg, GTA02 which contains the .config"
echo "and will hold the object files"
@@ -75,7 +77,7 @@ echo $MKIMAGECMD
# actually make it
#
-if make -j5 O=$1 ARCH=arm CONFIG_DEBUG_SECTION_MISMATCH=y EXTRAVERSION=$VERSION; then
+if make -j$PARALLEL O=$1 ARCH=arm CONFIG_DEBUG_SECTION_MISMATCH=y EXTRAVERSION=$VERSION; then
#
# if the build is happy, postprocess it by strip and with U-Boot header wrapper