mirror of
https://github.com/keylase/nvidia-patch.git
synced 2024-11-09 11:38:21 +00:00
linux: add driver version 450.51.05
This commit is contained in:
parent
2275c522f0
commit
701f072764
@ -1,7 +1,7 @@
|
||||
NVENC and NvFBC patches for Nvidia drivers
|
||||
==========================================
|
||||
|
||||
![GitHub last commit](https://img.shields.io/github/last-commit/keylase/nvidia-patch.svg) ![Latest version](https://img.shields.io/badge/latest%20linux%20driver%20version-450.51-brightgreen.svg)
|
||||
![GitHub last commit](https://img.shields.io/github/last-commit/keylase/nvidia-patch.svg) ![Latest version](https://img.shields.io/badge/latest%20linux%20driver%20version-450.51.05-brightgreen.svg)
|
||||
|
||||
---
|
||||
|
||||
@ -94,6 +94,7 @@ Requirements:
|
||||
| 440.100 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/440.100/NVIDIA-Linux-x86_64-440.100.run) |
|
||||
| 450.36.06 | YES | YES | [Driver link](https://developer.download.nvidia.com/compute/cuda/11.0.1/local_installers/cuda_11.0.1_450.36.06_linux.run) |
|
||||
| 450.51 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/450.51/NVIDIA-Linux-x86_64-450.51.run) |
|
||||
| 450.51.05 | YES | YES | [Driver link](https://international.download.nvidia.com/tesla/450.51.05/NVIDIA-Linux-x86_64-450.51.05.run) |
|
||||
|
||||
## Synopsis
|
||||
|
||||
|
@ -363,6 +363,12 @@
|
||||
"nvenc_patch": true,
|
||||
"nvfbc_patch": true,
|
||||
"driver_url": "https://international.download.nvidia.com/XFree86/Linux-x86_64/440.100/NVIDIA-Linux-x86_64-440.100.run"
|
||||
},
|
||||
{
|
||||
"version": "450.51.05",
|
||||
"nvenc_patch": true,
|
||||
"nvfbc_patch": true,
|
||||
"driver_url": "https://international.download.nvidia.com/tesla/450.51.05/NVIDIA-Linux-x86_64-450.51.05.run"
|
||||
}
|
||||
],
|
||||
"example": {
|
||||
|
@ -71,6 +71,7 @@ declare -A patch_list=(
|
||||
["440.100"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/'
|
||||
["450.36.06"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/'
|
||||
["450.51"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/'
|
||||
["450.51.05"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/'
|
||||
)
|
||||
|
||||
declare -A object_list=(
|
||||
@ -102,6 +103,7 @@ declare -A object_list=(
|
||||
["440.100"]='libnvidia-fbc.so'
|
||||
["450.36.06"]='libnvidia-fbc.so'
|
||||
["450.51"]='libnvidia-fbc.so'
|
||||
["450.51.05"]='libnvidia-fbc.so'
|
||||
)
|
||||
|
||||
check_version_supported () {
|
||||
|
2
patch.sh
2
patch.sh
@ -108,6 +108,7 @@ declare -A patch_list=(
|
||||
["440.100"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
|
||||
["450.36.06"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
|
||||
["450.51"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
|
||||
["450.51.05"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
|
||||
)
|
||||
|
||||
declare -A object_list=(
|
||||
@ -174,6 +175,7 @@ declare -A object_list=(
|
||||
["440.100"]='libnvidia-encode.so'
|
||||
["450.36.06"]='libnvidia-encode.so'
|
||||
["450.51"]='libnvidia-encode.so'
|
||||
["450.51.05"]='libnvidia-encode.so'
|
||||
)
|
||||
|
||||
check_version_supported () {
|
||||
|
Loading…
Reference in New Issue
Block a user