diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-09-15 23:38:13 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-09-16 03:30:18 -0400 |
commit | 909a3a8c16f2082bd7f4d3e1d9073fcdace28310 (patch) | |
tree | 1e18966743f893d70156a6e60af2dfebc8aa7859 /projects/seabios | |
parent | b17fde9765e5fba133176a875dc012d2715a628d (diff) | |
download | librebootfr-909a3a8c16f2082bd7f4d3e1d9073fcdace28310.tar.gz librebootfr-909a3a8c16f2082bd7f4d3e1d9073fcdace28310.zip |
Change repository URI in SeaBIOS download action
git.seabios.org doesn't have its certificate properly configured,
preventing git from taking advantage of TLS certificate
verification (git complains and aborts). To side-step the issue, the
URI for the SeaBIOS repository at review.coreboot.org/seabios.git is
substituted in place of the old.
Diffstat (limited to 'projects/seabios')
-rwxr-xr-x | projects/seabios/seabios | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/projects/seabios/seabios b/projects/seabios/seabios index 818ffcfd..a0682204 100755 --- a/projects/seabios/seabios +++ b/projects/seabios/seabios @@ -27,8 +27,7 @@ usage() { download() { local repository="${project}" - # Can't clone using TLS until Coreboot's cert lists the domain as a SAN - project_download_git "${project}" "${repository}" 'git://git.seabios.org/seabios.git' "$@" + project_download_git "${project}" "${repository}" 'https://review.coreboot.org/seabios.git' "$@" } download_check() { |