summaryrefslogtreecommitdiff
path: root/gnu/build/marionette.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/build/marionette.scm')
-rw-r--r--gnu/build/marionette.scm22
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/build/marionette.scm b/gnu/build/marionette.scm
index 015fc8a98b7..b6d4ec0de9c 100644
--- a/gnu/build/marionette.scm
+++ b/gnu/build/marionette.scm
@@ -19,6 +19,17 @@
19;;; You should have received a copy of the GNU General Public License 19;;; You should have received a copy of the GNU General Public License
20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. 20;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21 21
22;;; Commentary:
23;;;
24;;; Instrumentation tools for QEMU virtual machines (VMs). A "marionette" is
25;;; essentially a VM (a QEMU instance) with its monitor connected to a
26;;; Unix-domain socket, and with a REPL inside the guest listening on a
27;;; virtual console, which is itself connected to the host via a Unix-domain
28;;; socket--these are the marionette's strings, connecting it to the almighty
29;;; puppeteer.
30;;;
31;;; Code:
32
22(define-module (gnu build marionette) 33(define-module (gnu build marionette)
23 #:use-module (srfi srfi-9) 34 #:use-module (srfi srfi-9)
24 #:use-module (srfi srfi-26) 35 #:use-module (srfi srfi-26)
@@ -44,17 +55,6 @@
44 system-test-runner 55 system-test-runner
45 qemu-command)) 56 qemu-command))
46 57
47;;; Commentary:
48;;;
49;;; Instrumentation tools for QEMU virtual machines (VMs). A "marionette" is
50;;; essentially a VM (a QEMU instance) with its monitor connected to a
51;;; Unix-domain socket, and with a REPL inside the guest listening on a
52;;; virtual console, which is itself connected to the host via a Unix-domain
53;;; socket--these are the marionette's strings, connecting it to the almighty
54;;; puppeteer.
55;;;
56;;; Code:
57
58(define-record-type <marionette> 58(define-record-type <marionette>
59 (marionette command pid monitor repl) 59 (marionette command pid monitor repl)
60 marionette? 60 marionette?