v2v: utils: Remove another reference to kraxel's OVMF repo.

Updates commit 889386f8c6.
This commit is contained in:
Richard W.M. Jones
2017-03-30 22:11:15 +01:00
parent fcaae71696
commit 707c60ccb3

View File

@@ -61,7 +61,7 @@ let find_uefi_firmware guest_arch =
guest_arch in
let rec loop = function
| [] ->
error (f_"cannot find firmware for UEFI guests.\n\nYou probably need to install OVMF, or Gerd's firmware repo (https://www.kraxel.org/repos/), or AAVMF (if using aarch64)")
error (f_"cannot find firmware for UEFI guests.\n\nYou probably need to install OVMF (x86-64), or AAVMF (aarch64)")
| ({ Uefi.code = code; vars = vars_template } as ret) :: rest ->
if Sys.file_exists code && Sys.file_exists vars_template then ret
else loop rest