summaryrefslogtreecommitdiff
path: root/gnu/build/vm.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2018-12-19 00:12:14 +0100
committerLudovic Courtès <ludo@gnu.org>2018-12-19 00:14:00 +0100
commita934e9fc1c798258d344b49631feb23e195e48fa (patch)
treecd4fbfeac0d7a2b9638e38db24e5ddd40133fc16 /gnu/build/vm.scm
parent439a4c7511e39bc93419f9fcc95d70c7f60125ea (diff)
downloadpatches-a934e9fc1c798258d344b49631feb23e195e48fa.tar
patches-a934e9fc1c798258d344b49631feb23e195e48fa.tar.gz
vm: Re-enable KVM on i386.
The workaround is apparently no longer needed with Linux-libre 4.19.2 in the host. * gnu/build/vm.scm (load-in-linux-vm): Remove special case for "qemu-system-i386", thereby re-enabling KVM.
Diffstat (limited to 'gnu/build/vm.scm')
-rw-r--r--gnu/build/vm.scm8
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm
index 83ad489cc7..0aef73d26d 100644
--- a/gnu/build/vm.scm
+++ b/gnu/build/vm.scm
@@ -105,13 +105,7 @@ the #:references-graphs parameter of 'derivation'."
;; hardware virtualization to still use these commands. KVM support is
;; still buggy on some ARM32 boards. Do not use it even if available.
,@(if (and (file-exists? "/dev/kvm")
- (not target-arm32?)
-
- ;; XXX: 32-bit 'qemu-system-i386 -enable-kvm' segfaults on
- ;; x86_64 hosts running Linux-libre 4.17:
- ;; <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31380#18> and
- ;; <https://lists.gnu.org/archive/html/qemu-devel/2018-07/msg01166.html>.
- (not (string-suffix? "-i386" qemu)))
+ (not target-arm32?))
'("-enable-kvm")
'())