Skip to content
Snippets Groups Projects
Commit f19c6e5f authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

vm: Use a para-virtualized disk when creating an image.

* guix/build/vm.scm (load-in-linux-vm): When MAKE-DISK-IMAGE?, use
  '-drive ...,if=virtio' for better performance.
* gnu/system/vm.scm (qemu-image): Use /dev/vda instead of /dev/sda.
parent c4a74364
No related branches found
No related tags found
No related merge requests found
...@@ -236,7 +236,7 @@ (define* (qemu-image #:key ...@@ -236,7 +236,7 @@ (define* (qemu-image #:key
(let ((graphs '#$(match inputs (let ((graphs '#$(match inputs
(((names . _) ...) (((names . _) ...)
names)))) names))))
(initialize-hard-disk "/dev/sda" (initialize-hard-disk "/dev/vda"
#:grub.cfg #$grub-configuration #:grub.cfg #$grub-configuration
#:closures graphs #:closures graphs
#:copy-closures? #$copy-inputs? #:copy-closures? #$copy-inputs?
......
...@@ -96,7 +96,8 @@ (define image-file ...@@ -96,7 +96,8 @@ (define image-file
"-append" (string-append "console=ttyS0 --load=" "-append" (string-append "console=ttyS0 --load="
builder) builder)
(if make-disk-image? (if make-disk-image?
`("-hda" ,image-file) `("-drive" ,(string-append "file=" image-file
",if=virtio"))
'()))) '())))
(error "qemu failed" qemu)) (error "qemu failed" qemu))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment