diff --git a/README.md b/README.md index 0d68197..fa8bdf5 100644 --- a/README.md +++ b/README.md @@ -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-440.82-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.36.06-brightgreen.svg) --- @@ -89,6 +89,7 @@ Requirements: | 440.66.14 | YES | YES | | | 440.66.15 | YES | YES | | | 440.82 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/440.82/NVIDIA-Linux-x86_64-440.82.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) | ## Synopsis diff --git a/drivers.json b/drivers.json index 385a52a..b3e6333 100644 --- a/drivers.json +++ b/drivers.json @@ -334,6 +334,12 @@ "version": "440.66.15", "nvenc_patch": true, "nvfbc_patch": true + }, + { + "version": "450.36.06", + "nvenc_patch": true, + "nvfbc_patch": true, + "driver_url": "https://developer.download.nvidia.com/compute/cuda/11.0.1/local_installers/cuda_11.0.1_450.36.06_linux.run" } ], "example": { @@ -1589,4 +1595,4 @@ ] } } -} +} \ No newline at end of file diff --git a/patch-fbc.sh b/patch-fbc.sh index 452dc1c..32e2375 100755 --- a/patch-fbc.sh +++ b/patch-fbc.sh @@ -66,6 +66,7 @@ declare -A patch_list=( ["440.66.14"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/' ["440.66.15"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/' ["440.82"]='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/' ) declare -A object_list=( @@ -92,6 +93,7 @@ declare -A object_list=( ["440.66.14"]='libnvidia-fbc.so' ["440.66.15"]='libnvidia-fbc.so' ["440.82"]='libnvidia-fbc.so' + ["450.36.06"]='libnvidia-fbc.so' ) check_version_supported () { diff --git a/patch.sh b/patch.sh index 6cf43e8..63bffb7 100755 --- a/patch.sh +++ b/patch.sh @@ -103,6 +103,7 @@ declare -A patch_list=( ["440.66.14"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g' ["440.66.15"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g' ["440.82"]='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' ) declare -A object_list=( @@ -164,6 +165,7 @@ declare -A object_list=( ["440.66.14"]='libnvidia-encode.so' ["440.66.15"]='libnvidia-encode.so' ["440.82"]='libnvidia-encode.so' + ["450.36.06"]='libnvidia-encode.so' ) check_version_supported () {