diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-07 21:30:48 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-07 21:30:48 +0200 |
commit | 62512444673f2967017375b65368eedcceda6496 (patch) | |
tree | 397f551d59af6bffec626a07bf0c87b4f58faea6 | |
parent | b38264febf5df6141b2ef320d1102a559ebf442f (diff) | |
download | jenkins.debian.net-62512444673f2967017375b65368eedcceda6496.tar.xz |
Revert "reproducible coreboot: Use ca-global certs for https verification"
This reverts commit 0a3367a9db34bcc900f65df94b4f6c1fd4695f26.
-rwxr-xr-x | bin/reproducible_coreboot.sh | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh index 349e3431..ba79a66f 100755 --- a/bin/reproducible_coreboot.sh +++ b/bin/reproducible_coreboot.sh @@ -81,13 +81,10 @@ mkdir b1 b2 echo "=============================================================================" echo "$(date -u) - Cloning the coreboot git repository with submodules now." echo "=============================================================================" -CAFILE=/etc/ssl/ca-global/ca-certificates.crt -CACONFIG= -[ -f "$CAFILE" ] && CACONFIG="GIT_SSL_CAINFO=$CAFILE" -env $CACONFIG git clone --recursive https://review.coreboot.org/p/coreboot.git +git clone --recursive http://review.coreboot.org/p/coreboot.git cd coreboot # still required because coreboot moved submodules and to take care of old git versions -env $CACONFIG git submodule update --init --checkout 3rdparty/blobs +git submodule update --init --checkout 3rdparty/blobs COREBOOT="$(git log -1)" COREBOOT_VERSION=$(git describe) |