kernel: Disable VirtualBox guest modules. (#60938)

kernel: Disable VirtualBox guest modules.
This commit is contained in:
Florian Klink 2019-05-12 23:42:42 +02:00 committed by GitHub
commit f2ac54d086
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -426,6 +426,12 @@ let
VFIO_PCI_VGA = mkIf stdenv.is64bit yes;
# VirtualBox guest drivers in the kernel conflict with the ones in the
# official additions package and prevent the vboxsf module from loading,
# so disable them for now.
VBOXGUEST = option no;
DRM_VBOXVIDEO = option no;
} // optionalAttrs (stdenv.isx86_64 || stdenv.isi686) ({
XEN = option yes;