bdcd7d5900
Nvidia legacy binary driver updated to version 390.143. Affected packages: l/nvidia-driver - no changes to build script, new package provides newer versions of libraries included in 390.141 only. k/kmod-nvidia - this kernel driver builds successfully for kernels 5.11 with no patches required. Performance and suspend/resume tested - works as expected. Signed-off-by: Michal Cieslakiewicz <michal.cieslakiewicz@wp.pl>
7 lines
199 B
Bash
Executable File
7 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
BINDIST=NVIDIA-Linux-x86_64
|
|
VERSION=390.143
|
|
wget https://us.download.nvidia.com/XFree86/Linux-x86_64/${VERSION}/${BINDIST}-${VERSION}.run && \
|
|
chmod +x ${BINDIST}-${VERSION}.run
|