From 9406424657517eb95140f4c77802e67aea82f45c Mon Sep 17 00:00:00 2001 From: NoRelect Date: Tue, 2 Jan 2024 20:30:03 +0100 Subject: [PATCH] Allow using raw and qcow disks by removing the hardcoded raw format --- fuzz_runner/src/nyx/params.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz_runner/src/nyx/params.rs b/fuzz_runner/src/nyx/params.rs index 9d8a703..ae2ff7a 100644 --- a/fuzz_runner/src/nyx/params.rs +++ b/fuzz_runner/src/nyx/params.rs @@ -46,7 +46,7 @@ impl QemuParams { FuzzRunnerConfig::QemuSnapshot(x) => { cmd.push(x.qemu_binary.to_string()); cmd.push("-drive".to_string()); - cmd.push(format!("file={},format=raw,index=0,media=disk", x.hda.to_string())); + cmd.push(format!("file={},index=0,media=disk", x.hda.to_string())); }, }