summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_coreboot.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-07 08:44:38 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-07 08:44:38 +0200
commit2c7e3a1c55cb9c24b2d9cc0c8f6bc212f9178044 (patch)
tree42b0eac491d77baf82d8d8ac9404429d19941f2f /bin/reproducible_coreboot.sh
parent039bc6a9d8e5dbdcc6ab3dc2b07b4b1e267850e3 (diff)
downloadjenkins.debian.net-2c7e3a1c55cb9c24b2d9cc0c8f6bc212f9178044.tar.xz
Revert "reproducible coreboot: Use ca-global certs for https verification"
This reverts commit ccd3bce4b049bdf3550bd1ec6111f034eb61e4ed.
Diffstat (limited to 'bin/reproducible_coreboot.sh')
-rwxr-xr-xbin/reproducible_coreboot.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh
index 32dc126d..0a250ea2 100755
--- a/bin/reproducible_coreboot.sh
+++ b/bin/reproducible_coreboot.sh
@@ -90,13 +90,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)