diff --git a/README.md b/README.md index 400e800..d13a947 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-455.23.05-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-455.28-brightgreen.svg) [NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs. @@ -115,6 +115,7 @@ git clone https://ipfs.io/ipns/Qmed4r8yrBP162WK1ybd1DJWhLUi4t6mGuBoB9fLtjxR7u nv | 455.22.04 | YES | NO | | | 455.23.04 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/455.23.04/NVIDIA-Linux-x86_64-455.23.04.run) | | 455.23.05 | YES | YES | | +| 455.28 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/455.28/NVIDIA-Linux-x86_64-455.28.run) | ## Synopsis diff --git a/drivers.json b/drivers.json index 6e75a99..56fc8cd 100644 --- a/drivers.json +++ b/drivers.json @@ -429,6 +429,12 @@ "version": "455.22.04", "nvenc_patch": true, "nvfbc_patch": false + }, + { + "version": "455.28", + "nvenc_patch": true, + "nvfbc_patch": true, + "driver_url": "https://international.download.nvidia.com/XFree86/Linux-x86_64/455.28/NVIDIA-Linux-x86_64-455.28.run" } ], "example": { diff --git a/patch-fbc.sh b/patch-fbc.sh index 7e82cd6..4575bbe 100755 --- a/patch-fbc.sh +++ b/patch-fbc.sh @@ -82,6 +82,7 @@ declare -A patch_list=( ["450.80.02"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/' ["455.23.04"]='s/\x83\xf8\x01\x0f\x84\x85/\x83\xf8\x69\x0f\x84\x85/' ["455.23.05"]='s/\x83\xf8\x01\x0f\x84\x85/\x83\xf8\x69\x0f\x84\x85/' + ["455.28"]='s/\x83\xf8\x01\x0f\x84\x85/\x83\xf8\x69\x0f\x84\x85/' ) declare -A object_list=( @@ -124,6 +125,7 @@ declare -A object_list=( ["450.80.02"]='libnvidia-fbc.so' ["455.23.04"]='libnvidia-fbc.so' ["455.23.05"]='libnvidia-fbc.so' + ["455.28"]='libnvidia-fbc.so' ) check_version_supported () { diff --git a/patch.sh b/patch.sh index e92d950..9e43912 100755 --- a/patch.sh +++ b/patch.sh @@ -120,6 +120,7 @@ declare -A patch_list=( ["455.22.04"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g' ["455.23.04"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g' ["455.23.05"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g' + ["455.28"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g' ) declare -A object_list=( @@ -198,6 +199,7 @@ declare -A object_list=( ["455.22.04"]='libnvidia-encode.so' ["455.23.04"]='libnvidia-encode.so' ["455.23.05"]='libnvidia-encode.so' + ["455.28"]='libnvidia-encode.so' ) check_version_supported () {