Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47935 )
Change subject: util/crossgcc: Ignore TLS certificate issues ......................................................................
util/crossgcc: Ignore TLS certificate issues
We have our own hashes to check, so while https is nice to improve the chance of things going over the wire unadulterated, we don't rely on it.
Change-Id: Id6ebb301775e1279b3c00e5064491c8f88be73ef Signed-off-by: Patrick Georgi pgeorgi@google.com --- M util/crossgcc/buildgcc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/35/47935/1
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 01c4f86..3e618c3 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -1066,7 +1066,7 @@ download_showing_percentage() { url=$1 echo - curl -O --progress-bar --location --retry 3 "$url" + curl -O --insecure --progress-bar --location --retry 3 "$url" } fi