diff options
-rwxr-xr-x | bin/reproducible_openwrt.sh | 59 |
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" |