summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Plattner <aplattner@nvidia.com>2017-02-14 15:51:41 -0800
committerAaron Plattner <aplattner@nvidia.com>2017-02-14 15:51:41 -0800
commitdb1e8de724d33c4644326d2044537487a653ed41 (patch)
treeae1effb251fc6d8058ba901222a6c2131a3127b3
parent2240c92528d607f5dd67c5ceaa341341ab6ca7f7 (diff)
375.39375.39
-rw-r--r--install-from-cwd.c6
-rw-r--r--version.mk2
2 files changed, 5 insertions, 3 deletions
diff --git a/install-from-cwd.c b/install-from-cwd.c
index 3a1f8f6..47ebdf6 100644
--- a/install-from-cwd.c
+++ b/install-from-cwd.c
@@ -312,8 +312,10 @@ int install_from_cwd(Options *op)
*/
if (!op->no_kernel_module || op->dkms) {
- if (!load_kernel_module(op, "nvidia-drm")) {
- goto failed;
+ if (package_includes_kernel_module(p, "nvidia-drm")) {
+ if (!load_kernel_module(op, "nvidia-drm")) {
+ goto failed;
+ }
}
if (package_includes_kernel_module(p, "nvidia-vgpu-vfio")) {
diff --git a/version.mk b/version.mk
index 02a7519..b16d6ed 100644
--- a/version.mk
+++ b/version.mk
@@ -1 +1 @@
-NVIDIA_VERSION = 375.26
+NVIDIA_VERSION = 375.39