mirror of
https://github.com/keylase/nvidia-patch.git
synced 2025-07-31 12:00:03 -07:00
linux: add support for driver 575.64.03 (#969)
* Update patch.sh * Update patch-fbc.sh * Update drivers.json * Update README.md
This commit is contained in:
parent
cb35863ed7
commit
8ecf863791
4 changed files with 10 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
NVENC and NvFBC patches for Nvidia drivers
|
||||
==========================================
|
||||
|
||||
 
|
||||
 
|
||||
|
||||
[NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
|
||||
|
||||
|
@ -244,6 +244,7 @@ If you want to donate, please send it to your favorite open source organizations
|
|||
| 575.51.02 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/575.51.02/NVIDIA-Linux-x86_64-575.51.02.run) |
|
||||
| 575.57.08 | YES | YES | [Driver link](https://in.download.nvidia.com/XFree86/Linux-x86_64/575.57.08/NVIDIA-Linux-x86_64-575.57.08.run) |
|
||||
| 575.64 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/575.64/NVIDIA-Linux-x86_64-575.64.run) |
|
||||
| 575.64.03 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/575.64.03/NVIDIA-Linux-x86_64-575.64.03.run) |
|
||||
|
||||
## Synopsis
|
||||
|
||||
|
|
|
@ -1265,6 +1265,12 @@
|
|||
"nvenc_patch": true,
|
||||
"nvfbc_patch": true,
|
||||
"driver_url": "https://international.download.nvidia.com/XFree86/Linux-x86_64/575.64/NVIDIA-Linux-x86_64-575.64.run"
|
||||
},
|
||||
{
|
||||
"version": "575.64.03",
|
||||
"nvenc_patch": true,
|
||||
"nvfbc_patch": true,
|
||||
"driver_url": "https://international.download.nvidia.com/XFree86/Linux-x86_64/575.64.03/NVIDIA-Linux-x86_64-575.64.03.run"
|
||||
}
|
||||
],
|
||||
"example": {
|
||||
|
|
|
@ -240,6 +240,7 @@ declare -A patch_list=(
|
|||
["575.51.02"]='s/\x85\xc0\x0f\x85\x14\x01\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||
["575.57.08"]='s/\x85\xc0\x0f\x85\x14\x01\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||
["575.64"]='s/\x85\xc0\x0f\x85\x14\x01\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||
["575.64.03"]='s/\x85\xc0\x0f\x85\x14\x01\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||
)
|
||||
|
||||
check_version_supported () {
|
||||
|
|
1
patch.sh
1
patch.sh
|
@ -278,6 +278,7 @@ declare -A patch_list=(
|
|||
["575.51.02"]='s/\xe8\xb5\x2f\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\xb5\x2f\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||
["575.57.08"]='s/\xe8\xb5\x2f\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\xb5\x2f\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||
["575.64"]='s/\xe8\xb5\x2f\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\xb5\x2f\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||
["575.64.03"]='s/\xe8\xb5\x2f\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\xb5\x2f\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||
)
|
||||
|
||||
check_version_supported () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue