summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReiner Herrmann <reiner@reiner-h.de>2015-07-16 22:28:02 +0200
committerHolger Levsen <holger@layer-acht.org>2015-07-17 10:30:55 +0200
commitf6395b3c06146889e3c5dd8b7cd026fa0d85729a (patch)
treeb4d538bc527f79d0d09d85aac91cac9e3fc998f7
parentfffb41b423aa10b67e38d08f302b768f1d2c6eba (diff)
downloadjenkins.debian.net-f6395b3c06146889e3c5dd8b7cd026fa0d85729a.tar.xz
reproducible openwrt: build all packages and simplify building
-rwxr-xr-xbin/reproducible_openwrt.sh13
1 files changed, 2 insertions, 11 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh
index f48d7bae..f74f74b6 100755
--- a/bin/reproducible_openwrt.sh
+++ b/bin/reproducible_openwrt.sh
@@ -47,6 +47,7 @@ openwrt_config() {
CONFIG=$1
printf "$CONFIG" > .config
+ printf "CONFIG_ALL=y" >> .config
make defconfig
}
@@ -69,17 +70,7 @@ openwrt_build() {
echo "$(date -u) - Building OpenWrt ${OPENWRT_VERSION} ($TARGET) - $RUN build run."
echo "============================================================================="
ionice -c 3 nice \
- $MAKE -j $NUM_CPU target/compile
- ionice -c 3 nice \
- $MAKE -j $NUM_CPU package/cleanup
- ionice -c 3 nice \
- $MAKE -j $NUM_CPU package/compile || true # don't let some packages fail the whole build
- ionice -c 3 nice \
- $MAKE -j $NUM_CPU package/install
- ionice -c 3 nice \
- $MAKE -j $NUM_CPU target/install
- ionice -c 3 nice \
- $MAKE -j $NUM_CPU package/index
+ $MAKE -j $NUM_CPU IGNORE_ERRORS=1
}
openwrt_cleanup() {