aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-06-25 09:31:19 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-06-25 09:31:19 +0200
commit7bd9beb8125a3a2b1c4ee137b3fb22ae87f5726b (patch)
tree6c509ada10a935f747f660eff90b372965a666ed /bbot/agent
parent90b1fc64ec00b974010a2218a6b80554648dc75c (diff)
Set QEMU_AUDIO_DRV to 'none' to disable audio output
Diffstat (limited to 'bbot/agent')
-rw-r--r--bbot/agent/machine.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/bbot/agent/machine.cxx b/bbot/agent/machine.cxx
index a8933bb..a1fe9bb 100644
--- a/bbot/agent/machine.cxx
+++ b/bbot/agent/machine.cxx
@@ -296,13 +296,14 @@ namespace bbot
//
// 1. echo system_powerdown | socat - UNIX-CONNECT:.../monitor
//
+ const char* env[] = {"QEMU_AUDIO_DRV=none", // Disable audio output.
+ nullptr};
proc = run_io_start (
trace,
fdnull (),
2,
2,
- md, // Run from the machine's directory.
- kvm,
+ process_env (kvm, md, env), // Run from the machine's directory.
"-boot", "c", // Boot from disk.
"-no-reboot", // Exit on VM reboot.
"-m", to_string (ram / 1024) + "M",