summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_openwrt.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-12 18:34:44 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-12 18:34:44 +0200
commite012114406a33674706901b26e8a2784be9944ea (patch)
tree10e6b12f11ca14bfeb5ef27e2627b39f345a9d0e /bin/reproducible_openwrt.sh
parent0a6cbf507fe27be56d2d645d8e336a9352395c4d (diff)
downloadjenkins.debian.net-e012114406a33674706901b26e8a2784be9944ea.tar.xz
use 'ionice -c 3 nice' instead of 'nice ionice -c 3' everywhere
Diffstat (limited to 'bin/reproducible_openwrt.sh')
-rwxr-xr-xbin/reproducible_openwrt.sh28
1 files changed, 14 insertions, 14 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh
index 3e373607..8cc25b31 100755
--- a/bin/reproducible_openwrt.sh
+++ b/bin/reproducible_openwrt.sh
@@ -104,9 +104,9 @@ echo "==========================================================================
echo "$(date -u) - Building the toolchain now."
echo "============================================================================="
make defconfig
-nice ionice -c 3 \
+ionice -c 3 nice \
make -j $NUM_CPU tools/install
-nice ionice -c 3 \
+ionice -c 3 nice \
make -j $NUM_CPU toolchain/install
echo "============================================================================="
@@ -114,17 +114,17 @@ echo "$(date -u) - Building openwrt ${OPENWRT_VERSION} images now - first build
echo "============================================================================="
export TZ="/usr/share/zoneinfo/Etc/GMT+12"
# actually build everything
-nice ionice -c 3 \
+ionice -c 3 nice \
make -j $NUM_CPU target/compile
-nice ionice -c 3 \
+ionice -c 3 nice \
make -j $NUM_CPU package/cleanup
-nice ionice -c 3 \
+ionice -c 3 nice \
make -j $NUM_CPU package/compile
-nice ionice -c 3 \
+ionice -c 3 nice \
make -j $NUM_CPU package/install
-nice ionice -c 3 \
+ionice -c 3 nice \
make -j $NUM_CPU target/install
-nice ionice -c 3 \
+ionice -c 3 nice \
make -j $NUM_CPU package/index
# save results in b1
@@ -146,22 +146,22 @@ export CAPTURE_ENVIRONMENT="I capture the environment"
umask 0002
# use allmost all cores for second build
NEW_NUM_CPU=$(echo $NUM_CPU-1|bc)
-nice ionice -c 3 \
+ionice -c 3 nice \
linux64 --uname-2.6 \
make -j $NUM_CPU target/compile
-nice ionice -c 3 \
+ionice -c 3 nice \
linux64 --uname-2.6 \
make -j $NEW_NUM_CPU package/cleanup
-nice ionice -c 3 \
+ionice -c 3 nice \
linux64 --uname-2.6 \
make -j $NEW_NUM_CPU package/compile
-nice ionice -c 3 \
+ionice -c 3 nice \
linux64 --uname-2.6 \
make -j $NEW_NUM_CPU package/install
-nice ionice -c 3 \
+ionice -c 3 nice \
linux64 --uname-2.6 \
make -j $NEW_NUM_CPU target/install
-nice ionice -c 3 \
+ionice -c 3 nice \
linux64 --uname-2.6 \
make -j $NEW_NUM_CPU package/index