Skip to content

Commit fe7fd8c

Browse files
actions-userjailuthra
authored andcommitted
linux: add support for driver 580.119.02
1 parent af5e70a commit fe7fd8c

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.105.08-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.119.02-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

@@ -256,6 +256,7 @@ If you want to donate, please send it to your favorite open source organizations
256256
| 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) |
257257
| 580.95.05 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/580.95.05/NVIDIA-Linux-x86_64-580.95.05.run) |
258258
| 580.105.08 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/580.105.08/NVIDIA-Linux-x86_64-580.105.08.run) |
259+
| 580.119.02 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/580.119.02/NVIDIA-Linux-x86_64-580.119.02.run) |
259260

260261
## Synopsis
261262

drivers.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,6 +1337,12 @@
13371337
"nvenc_patch": true,
13381338
"nvfbc_patch": true,
13391339
"driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/580.105.08/NVIDIA-Linux-x86_64-580.105.08.run"
1340+
},
1341+
{
1342+
"version": "580.119.02",
1343+
"nvenc_patch": true,
1344+
"nvfbc_patch": true,
1345+
"driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/580.119.02/NVIDIA-Linux-x86_64-580.119.02.run"
13401346
}
13411347
],
13421348
"example": {

patch-fbc.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ declare -A patch_list=(
252252
["580.82.09"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
253253
["580.95.05"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
254254
["580.105.08"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
255+
["580.119.02"]='s/\x85\xc0\x0f\x85\xd4\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
255256
)
256257

257258
check_version_supported () {

patch.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ declare -A patch_list=(
290290
["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'
291291
["580.95.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'
292292
["580.105.08"]='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'
293+
["580.119.02"]='s/\xe8\x81\x2e\xfe\xff\x41\x89\xc6\x85\xc0/\xe8\x81\x2e\xfe\xff\x29\xc0\x41\x89\xc6/g'
293294
)
294295

295296
check_version_supported () {

0 commit comments

Comments
 (0)