From c8755e5d10b00ea98f8aede4f219286929ab954b Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sun, 7 Jun 2015 08:39:59 +0200 Subject: reproducible coreboot: dont build for arm64 yet, deal gracefully with toolchain build failing --- bin/reproducible_coreboot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_coreboot.sh') diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index c272925e..bf34ad85 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -14,7 +14,7 @@ common_init "$@" set -e # build for different architectures -ARCHS="i386 mips arm arm64 riscv" +ARCHS="i386 mips arm riscv" # arm64 cleanup_tmpdir() { cd @@ -104,7 +104,7 @@ echo "========================================================================== echo "$(date -u) - Building cross compilers for ${ARCHS} now." echo "=============================================================================" for ARCH in ${ARCHS} ; do - nice ionice -c 3 make crossgcc-$ARCH + nice ionice -c 3 make crossgcc-$ARCH || true # don't fail the full job just because some targets fail done echo "=============================================================================" -- cgit v1.2.3-54-g00ecf