mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-01 07:47:15 +00:00
builds: ovmf: Workaround Zeex repo becoming private
Let's just do a simple `sed` and **not** use the repo that became private. This is not a backport of https://github.com/tianocore/edk2/pull/6402, but it's a similar approach that allows us to proceed without the need to pick up a newer version of edk2. Signed-off-by: Fabiano Fidêncio <fabiano@fidencio.org>
This commit is contained in:
parent
03bf4433d7
commit
aff3d98ddd
@ -38,6 +38,9 @@ build_root=$(mktemp -d)
|
||||
pushd $build_root
|
||||
git clone --single-branch --depth 1 -b "${ovmf_version}" "${ovmf_repo}"
|
||||
cd "${ovmf_dir}"
|
||||
# TODO: Remove this line after bumping to a newer release of OVMF.
|
||||
# Reference: https://github.com/tianocore/edk2/pull/6402
|
||||
sed -i -e "s|https://github.com/Zeex/subhook.git|https://github.com/tianocore/edk2-subhook.git|g" .gitmodules
|
||||
git submodule init
|
||||
git submodule update
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user