mirror of
https://github.com/keylase/nvidia-patch.git
synced 2024-11-09 11:38:21 +00:00
linux: add support for driver 555.58
This commit is contained in:
parent
4e00d88a30
commit
83b06a1cdf
@ -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-555.42.02-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-555.58-brightgreen.svg)
|
||||
|
||||
[NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
|
||||
|
||||
@ -213,6 +213,7 @@ If you want to donate, please send it to your favorite open source organizations
|
||||
| 550.78 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/550.78/NVIDIA-Linux-x86_64-550.78.run) |
|
||||
| 550.90.07 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/550.90.07/NVIDIA-Linux-x86_64-550.90.07.run) |
|
||||
| 555.42.02 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/555.42.02/NVIDIA-Linux-x86_64-555.42.02.run) |
|
||||
| 555.58 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/555.58/NVIDIA-Linux-x86_64-555.58.run) |
|
||||
|
||||
## Synopsis
|
||||
|
||||
|
@ -1079,6 +1079,12 @@
|
||||
"nvenc_patch": true,
|
||||
"nvfbc_patch": true,
|
||||
"driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/535.183.01/NVIDIA-Linux-x86_64-535.183.01.run"
|
||||
},
|
||||
{
|
||||
"version": "555.58",
|
||||
"nvenc_patch": true,
|
||||
"nvfbc_patch": true,
|
||||
"driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/555.58/NVIDIA-Linux-x86_64-555.58.run"
|
||||
}
|
||||
],
|
||||
"example": {
|
||||
|
@ -206,6 +206,7 @@ declare -A patch_list=(
|
||||
["550.90.07"]='s/\x83\xfe\x01\x73\x08\x48/\x83\xfe\x01\x90\x90\x48/'
|
||||
["555.42.02"]='s/\x85\xc0\x0f\x85\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||
["555.52.04"]='s/\x85\xc0\x0f\x85\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||
["555.58"]='s/\x85\xc0\x0f\x85\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||
)
|
||||
|
||||
check_version_supported () {
|
||||
|
1
patch.sh
1
patch.sh
@ -245,6 +245,7 @@ declare -A patch_list=(
|
||||
["550.90.07"]='s/\xe8\x25\x54\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x25\x54\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||
["555.42.02"]='s/\xe8\x25\x43\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x25\x43\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||
["555.52.04"]='s/\xe8\x25\x43\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x25\x43\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||
["555.58"]='s/\xe8\x25\x43\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x25\x43\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||
)
|
||||
|
||||
check_version_supported () {
|
||||
|
Loading…
Reference in New Issue
Block a user