summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-12 16:07:25 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-12 16:07:25 +0200
commit21e964629e8513c25108d158e4cd5099eebc0858 (patch)
tree32ffba7b60fe5afa540336e016de48061494a008
parentd00ce9d7e61479b49ed343ac661338bf3adcb4f8 (diff)
downloadjenkins.debian.net-21e964629e8513c25108d158e4cd5099eebc0858.tar.xz
reproducible openwrt: build everything in one go
-rwxr-xr-xbin/reproducible_openwrt.sh59
1 files changed, 32 insertions, 27 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh
index d400d64f..b5d847f8 100755
--- a/bin/reproducible_openwrt.sh
+++ b/bin/reproducible_openwrt.sh
@@ -99,17 +99,19 @@ echo "==========================================================================
export TZ="/usr/share/zoneinfo/Etc/GMT+12"
# actually build everything
nice ionice -c 3 \
- make -j1 V=s target/compile
-nice ionice -c 3 \
- make -j $NUM_CPU package/cleanup
-nice ionice -c 3 \
- make -j $NUM_CPU package/compile
-nice ionice -c 3 \
- make -j $NUM_CPU package/install
-nice ionice -c 3 \
- make -j $NUM_CPU target/install
-nice ionice -c 3 \
- make -j $NUM_CPU package/index
+ make
+#nice ionice -c 3 \
+# make target/compile
+#nice ionice -c 3 \
+# make -j $NUM_CPU package/cleanup
+#nice ionice -c 3 \
+# make -j $NUM_CPU package/compile
+#nice ionice -c 3 \
+# make -j $NUM_CPU package/install
+#nice ionice -c 3 \
+# make -j $NUM_CPU target/install
+#nice ionice -c 3 \
+# make -j $NUM_CPU package/index
cd bin
for i in * ; do
@@ -142,22 +144,25 @@ umask 0002
NEW_NUM_CPU=$(echo $NUM_CPU-1|bc)
nice ionice -c 3 \
linux64 --uname-2.6 \
- make -j1 V=s target/compile
-nice ionice -c 3 \
- linux64 --uname-2.6 \
- make -j $NEW_NUM_CPU package/cleanup
-nice ionice -c 3 \
- linux64 --uname-2.6 \
- make -j $NEW_NUM_CPU package/compile
-nice ionice -c 3 \
- linux64 --uname-2.6 \
- make -j $NEW_NUM_CPU package/install
-nice ionice -c 3 \
- linux64 --uname-2.6 \
- make -j $NEW_NUM_CPU target/install
-nice ionice -c 3 \
- linux64 --uname-2.6 \
- make -j $NEW_NUM_CPU package/index
+ make
+#nice ionice -c 3 \
+# linux64 --uname-2.6 \
+# make target/compile
+#nice ionice -c 3 \
+# linux64 --uname-2.6 \
+# make -j $NEW_NUM_CPU package/cleanup
+#nice ionice -c 3 \
+# linux64 --uname-2.6 \
+# make -j $NEW_NUM_CPU package/compile
+#nice ionice -c 3 \
+# linux64 --uname-2.6 \
+# make -j $NEW_NUM_CPU package/install
+#nice ionice -c 3 \
+# linux64 --uname-2.6 \
+# make -j $NEW_NUM_CPU target/install
+#nice ionice -c 3 \
+# linux64 --uname-2.6 \
+# make -j $NEW_NUM_CPU package/index
# reset environment to default values again
export LANG="en_GB.UTF-8"