linux: add support for driver 610.57.04

This commit is contained in:
GitHub Action
2026-08-14 05:59:28 +00:00
parent 4f66410454
commit 0b11eb9698
4 changed files with 10 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
NVENC and NvFBC patches for Nvidia drivers 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-610.43.03-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-610.57.04-brightgreen.svg)
[NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs. [NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
@@ -275,6 +275,7 @@ If you want to donate, please send it to your favorite open source organizations
| 595.84 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/595.84/NVIDIA-Linux-x86_64-595.84.run) | | 595.84 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/595.84/NVIDIA-Linux-x86_64-595.84.run) |
| 610.43.02 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/610.43.02/NVIDIA-Linux-x86_64-610.43.02.run) | | 610.43.02 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/610.43.02/NVIDIA-Linux-x86_64-610.43.02.run) |
| 610.43.03 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/610.43.03/NVIDIA-Linux-x86_64-610.43.03.run) | | 610.43.03 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/610.43.03/NVIDIA-Linux-x86_64-610.43.03.run) |
| 610.57.04 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/610.57.04/NVIDIA-Linux-x86_64-610.57.04.run) |
## Synopsis ## Synopsis

View File

@@ -1451,6 +1451,12 @@
"nvenc_patch": true, "nvenc_patch": true,
"nvfbc_patch": true, "nvfbc_patch": true,
"driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/580.178.04/NVIDIA-Linux-x86_64-580.178.04.run" "driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/580.178.04/NVIDIA-Linux-x86_64-580.178.04.run"
},
{
"version": "610.57.04",
"nvenc_patch": true,
"nvfbc_patch": true,
"driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/610.57.04/NVIDIA-Linux-x86_64-610.57.04.run"
} }
], ],
"example": { "example": {

View File

@@ -270,6 +270,7 @@ declare -A patch_list=(
["595.84"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g' ["595.84"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
["610.43.02"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g' ["610.43.02"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
["610.43.03"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g' ["610.43.03"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
["610.57.04"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
) )
check_version_supported () { check_version_supported () {

View File

@@ -309,6 +309,7 @@ declare -A patch_list=(
["595.84"]='s/\xe8\x51\x21\xfe\xff\x41\x89\xc6\x85\xc0/\xe8\x51\x21\xfe\xff\x29\xc0\x41\x89\xc6/g' ["595.84"]='s/\xe8\x51\x21\xfe\xff\x41\x89\xc6\x85\xc0/\xe8\x51\x21\xfe\xff\x29\xc0\x41\x89\xc6/g'
["610.43.02"]='s/\xe8\x71\x1f\xfe\xff\x41\x89\xc6\x85\xc0/\xe8\x71\x1f\xfe\xff\x29\xc0\x41\x89\xc6/g' ["610.43.02"]='s/\xe8\x71\x1f\xfe\xff\x41\x89\xc6\x85\xc0/\xe8\x71\x1f\xfe\xff\x29\xc0\x41\x89\xc6/g'
["610.43.03"]='s/\xe8\x71\x1f\xfe\xff\x41\x89\xc6\x85\xc0/\xe8\x71\x1f\xfe\xff\x29\xc0\x41\x89\xc6/g' ["610.43.03"]='s/\xe8\x71\x1f\xfe\xff\x41\x89\xc6\x85\xc0/\xe8\x71\x1f\xfe\xff\x29\xc0\x41\x89\xc6/g'
["610.57.04"]='s/\xe8\x71\x1f\xfe\xff\x41\x89\xc6\x85\xc0/\xe8\x71\x1f\xfe\xff\x29\xc0\x41\x89\xc6/g'
) )
check_version_supported () { check_version_supported () {