diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-06 03:48:55 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-06 03:48:55 +0200 |
commit | 813b472b6e883ea1e8963b76a1432c3a1d1fcc3e (patch) | |
tree | 1eef899a91d92fbca6f3814d0b7317db7f40d4e2 | |
parent | db4f7e62df2e6d032b419c879dd8c6f2a72d18df (diff) | |
download | jenkins.debian.net-813b472b6e883ea1e8963b76a1432c3a1d1fcc3e.tar.xz |
reproducible coreboot, try harder
-rwxr-xr-x | bin/reproducible_coreboot.sh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index f846ce7e..da0a1cdc 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -4,7 +4,7 @@ # © 2015 Mattia Rizzolo <mattia@mapreri.org> # released under the GPLv=2 -DEBUG=false +DEBUG=true . /srv/jenkins/bin/common-functions.sh common_init "$@" @@ -161,9 +161,8 @@ echo "========================================================================== echo "$(date) - Building coreboot images now - first build run." echo "=============================================================================" export TZ="/usr/share/zoneinfo/Etc/GMT+12" -bash util/abuild/abuild +bash util/abuild/abuild || true -set -x cd coreboot-builds for i in * ; do if [ -f $i/coreboot.rom ] ; then @@ -173,7 +172,6 @@ for i in * ; do done cd .. rm coreboot-builds -rf -set +x echo "=============================================================================" echo "$(date) - Building coreboot images now - second build run." @@ -181,7 +179,7 @@ echo "========================================================================== export TZ="/usr/share/zoneinfo/Etc/GMT-14" export LANG="fr_CH.UTF-8" export LC_ALL="fr_CH.UTF-8" -bash util/abuild/abuild +bash util/abuild/abuild || true export LANG="en_GB.UTF-8" unset LC_ALL |