Merge "Temporary hack: Boot protected VMs without pVM firmware."
diff --git a/virtualizationservice/src/crosvm.rs b/virtualizationservice/src/crosvm.rs
index 2c50fed..352ed50 100644
--- a/virtualizationservice/src/crosvm.rs
+++ b/virtualizationservice/src/crosvm.rs
@@ -271,7 +271,8 @@
.arg(config.cid.to_string());
if config.protected {
- command.arg("--protected-vm");
+ // TODO: Go back to "--protected-vm" once pVM firmware is fixed.
+ command.arg("--protected-vm-without-firmware");
}
if let Some(memory_mib) = config.memory_mib {