Skip to content

Commit 81795a0

Browse files
Zebra2711jailuthra
authored andcommitted
linux: add support for driver 580.82.09
1 parent e181448 commit 81795a0

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NVENC and NvFBC patches for Nvidia drivers
22
==========================================
33

4-
![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-580.82.07-brightgreen.svg)
4+
![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-580.82.09-brightgreen.svg)
55

66
[NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
77

@@ -251,6 +251,7 @@ If you want to donate, please send it to your favorite open source organizations
251251
| 580.65.06 | YES | YES | [Driver link](https://developer.download.nvidia.com/compute/cuda/repos/debian12/x86_64/cuda-drivers-580_580.65.06-1_amd64.deb) |
252252
| 580.76.05 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/580.76.05/NVIDIA-Linux-x86_64-580.76.05.run) |
253253
| 580.82.07 | YES | YES | [Driver link](https://developer.download.nvidia.com/compute/cuda/repos/debian12/x86_64/cuda-drivers-580_580.82.07-1_amd64.deb) |
254+
| 580.82.09 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/580.82.09/NVIDIA-Linux-x86_64-580.82.09.run) |
254255

255256
## Synopsis
256257

drivers.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1307,6 +1307,12 @@
13071307
"nvenc_patch": true,
13081308
"nvfbc_patch": true,
13091309
"driver_url": "https://developer.download.nvidia.com/compute/cuda/repos/debian12/x86_64/cuda-drivers-580_580.82.07-1_amd64.deb"
1310+
},
1311+
{
1312+
"version": "580.82.09",
1313+
"nvenc_patch": true,
1314+
"nvfbc_patch": true,
1315+
"driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/580.82.09/NVIDIA-Linux-x86_64-580.82.09.run"
13101316
}
13111317
],
13121318
"example": {

patch-fbc.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ declare -A patch_list=(
247247
["580.65.06"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
248248
["580.76.05"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
249249
["580.82.07"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g')
250+
["580.82.09"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g')
250251

251252
check_version_supported () {
252253
local ver="$1"

patch.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ declare -A patch_list=(
285285
["580.65.06"]='s/\xe8\x81\x2e\xfe\xff\x41\x89\xc6\x85\xc0\x0f\x85\xa6\x00\x00\x00\x4c/\xe8\x81\x2e\xfe\xff\x29\xc0\x41\x89\xc6\x90\x90\x90\x90\x90\x90\x4c/g'
286286
["580.76.05"]='s/\xe8\x81\x2e\xfe\xff\x41\x89\xc6\x85\xc0\x0f\x85\xa6\x00\x00\x00\x4c/\xe8\x81\x2e\xfe\xff\x29\xc0\x41\x89\xc6\x90\x90\x90\x90\x90\x90\x4c/g'
287287
["580.82.07"]='s/\xe8\x81\x2e\xfe\xff\x41\x89\xc6\x85\xc0\x0f\x85\xa6\x00\x00\x00\x4c/\xe8\x81\x2e\xfe\xff\x29\xc0\x41\x89\xc6\x90\x90\x90\x90\x90\x90\x4c/g'
288+
["580.82.09"]='s/\xe8\x81\x2e\xfe\xff\x41\x89\xc6\x85\xc0\x0f\x85\xa6\x00\x00\x00\x4c/\xe8\x81\x2e\xfe\xff\x29\xc0\x41\x89\xc6\x90\x90\x90\x90\x90\x90\x4c/g'
288289
)
289290

290291
check_version_supported () {

0 commit comments

Comments
 (0)