gnu: vm: Run QEMU with '-enable-kvm'.

* gnu/system/vm.scm (expression->derivation-in-linux-vm): Pass QEMU
  '-enable-kvm'.
master
Ludovic Courtès 2014-01-30 23:32:22 +01:00
parent 668c06acfc
commit a7d46f12ac
1 changed files with 2 additions and 1 deletions

View File

@ -154,7 +154,7 @@ made available under the /xchg CIFS share."
(#f '())))
(and (zero?
(system* qemu "-nographic" "-no-reboot"
(system* qemu "-enable-kvm" "-nographic" "-no-reboot"
"-net" "nic,model=e1000"
"-net" (string-append "user,smb=" (getcwd))
"-kernel" linux
@ -188,6 +188,7 @@ made available under the /xchg CIFS share."
("builder" ,user-builder)
,@inputs))))
(derivation-expression name builder
;; TODO: Require the "kvm" feature.
#:system system
#:inputs inputs
#:env-vars env-vars