diff options
| author | Maxim Cournoyer <maxim@guixotic.coop> | 2026-01-29 14:43:40 +0900 |
|---|---|---|
| committer | Maxim Cournoyer <maxim@guixotic.coop> | 2026-01-29 14:49:38 +0900 |
| commit | 934ccec24c1b44a2ecab97a02fcef62a75a0901c (patch) | |
| tree | ffecace4fca001d3fe24811f1270fbb384f65426 /gnu/build | |
| parent | f3d73553cdf50da0a20b8993f115483f82f4121f (diff) | |
build/marionette: Remove 'reconnect=1' QEMU parameter.
This option was removed from QEMU 10.2. 'make check-system TESTS=anonip',
which does a reboot and was the reason for its introduction still passes, so
apparently it's no longer needed.
* gnu/build/marionette.scm (make-marionette)
<extra-options>: Remove reconnect=1 chardev parameter.
Change-Id: Iaa225bc6a9f58cbbca74fc394ec2005f51e8491d
Diffstat (limited to 'gnu/build')
| -rw-r--r-- | gnu/build/marionette.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/build/marionette.scm b/gnu/build/marionette.scm index f6ceb584721..015fc8a98b7 100644 --- a/gnu/build/marionette.scm +++ b/gnu/build/marionette.scm @@ -107,8 +107,8 @@ QEMU monitor and to the guest's backdoor REPL." (define extra-options (list "-nographic" "-monitor" (string-append "unix:" socket-directory "/monitor") - "-chardev" (string-append "socket,id=repl,path=" socket-directory - "/repl,reconnect=1") + "-chardev" (string-append "socket,id=repl,path=" + socket-directory "/repl") "-chardev" (string-append "socket,id=qga,server=on,wait=off,path=" socket-directory "/qemu-ga") |
