diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2017-02-14 15:51:41 -0800 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2017-02-14 15:51:41 -0800 |
commit | db1e8de724d33c4644326d2044537487a653ed41 (patch) | |
tree | ae1effb251fc6d8058ba901222a6c2131a3127b3 | |
parent | 2240c92528d607f5dd67c5ceaa341341ab6ca7f7 (diff) |
375.39375.39
-rw-r--r-- | install-from-cwd.c | 6 | ||||
-rw-r--r-- | version.mk | 2 |
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")) { @@ -1 +1 @@ -NVIDIA_VERSION = 375.26 +NVIDIA_VERSION = 375.39 |