gnu: vm: Run QEMU with '-enable-kvm'.
* gnu/system/vm.scm (expression->derivation-in-linux-vm): Pass QEMU '-enable-kvm'.
This commit is contained in:
parent
668c06acfc
commit
a7d46f12ac
|
@ -154,7 +154,7 @@ made available under the /xchg CIFS share."
|
||||||
(#f '())))
|
(#f '())))
|
||||||
|
|
||||||
(and (zero?
|
(and (zero?
|
||||||
(system* qemu "-nographic" "-no-reboot"
|
(system* qemu "-enable-kvm" "-nographic" "-no-reboot"
|
||||||
"-net" "nic,model=e1000"
|
"-net" "nic,model=e1000"
|
||||||
"-net" (string-append "user,smb=" (getcwd))
|
"-net" (string-append "user,smb=" (getcwd))
|
||||||
"-kernel" linux
|
"-kernel" linux
|
||||||
|
@ -188,6 +188,7 @@ made available under the /xchg CIFS share."
|
||||||
("builder" ,user-builder)
|
("builder" ,user-builder)
|
||||||
,@inputs))))
|
,@inputs))))
|
||||||
(derivation-expression name builder
|
(derivation-expression name builder
|
||||||
|
;; TODO: Require the "kvm" feature.
|
||||||
#:system system
|
#:system system
|
||||||
#:inputs inputs
|
#:inputs inputs
|
||||||
#:env-vars env-vars
|
#:env-vars env-vars
|
||||||
|
|
Loading…
Reference in New Issue