Skip to content

Commit 3192442

Browse files
committed
disable patching ovmf on azure
1 parent 54f98aa commit 3192442

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tasks/sc2.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,9 +310,10 @@ def deploy(ctx, debug=False, clean=False):
310310

311311
# Install an up-to-date version of OVMF (the one currently shipped with
312312
# CoCo is not enough to run on 6.11 and QEMU 9.1)
313-
print_dotted_line(f"Installing OVMF ({OVMF_VERSION})")
314-
ovmf_install()
315-
print("Success!")
313+
if not on_azure():
314+
print_dotted_line(f"Installing OVMF ({OVMF_VERSION})")
315+
ovmf_install()
316+
print("Success!")
316317

317318
# Update SNP class to use default QEMU (we use host kernel 6.11, so we
318319
# can use upstream QEMU 9.1). We do this update before generating the SC2

0 commit comments

Comments
 (0)