This is an automated email from the git hooks/post-receive script.
apteryx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 11d37090f doc: Add a backslash escape to the disk-image example.
11d37090f is described below
commit 11d37090f9ef9610cd1a0dd75cc69ee06dd033ae
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Nov 17 21:43:22 2020 -0500
doc: Add a backslash escape to the disk-image example.
* doc/guix.texi (Invoking guix system): Add a backslash escape.
---
doc/guix.texi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index cca5714..a609d64 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -31045,7 +31045,7 @@ image=$(guix system disk-image --image-type=qcow2 \
gnu/system/examples/lightweight-desktop.tmpl)
cp $image /tmp/my-image.qcow2
chmod +w /tmp/my-image.qcow2
-qemu-system-x86_64 -enable-kvm -hda /tmp/my-image.qcow2 -m 1000
+qemu-system-x86_64 -enable-kvm -hda /tmp/my-image.qcow2 -m 1000 \
-bios $(guix build ovmf)/share/firmware/ovmf_x64.bin
@end example