Skip to content
Snippets Groups Projects
Commit ec2163a9 authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

wrap: Execute nvidia-modprobe with the -c=0 option

It has been reported that `nvidia-modprobe -u` might not be enough to
enable the Nvidia Vulkan ray-tracing:
https://github.com/HansKristian-Work/vkd3d-proton/issues/711



Apparently `nvidia-modprobe` needs to be called with the option
`-c=0` such that it will create the `/dev/nvidia-uvm` device file if it
doesn't already exist.

Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
parent 57e33775
No related branches found
No related tags found
1 merge request!327wrap: Execute nvidia-modprobe with the -c=0 option
Pipeline #14640 passed
......@@ -227,6 +227,7 @@ maybe_load_nvidia_modules (GError **error)
{
"nvidia-modprobe",
"-u",
"-c=0",
NULL
};
......
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