mirror of
https://github.com/keylase/nvidia-patch.git
synced 2024-11-09 19:48:20 +00:00
linux: add driver version 460.32.03
This commit is contained in:
parent
6940d64e47
commit
1fec400829
@ -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-455.46.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-460.32.03-brightgreen.svg)
|
||||
|
||||
[NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
|
||||
|
||||
@ -125,6 +125,7 @@ git clone https://ipfs.io/ipns/Qmed4r8yrBP162WK1ybd1DJWhLUi4t6mGuBoB9fLtjxR7u nv
|
||||
| 455.45.01 | YES | YES | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/455.45.01/NVIDIA-Linux-x86_64-455.45.01.run) |
|
||||
| 455.46.01 | YES | YES | |
|
||||
| 455.46.02 | YES | YES | |
|
||||
| 460.32.03 | YES | NO | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/460.32.03/NVIDIA-Linux-x86_64-460.32.03.run) |
|
||||
|
||||
## Synopsis
|
||||
|
||||
|
@ -484,6 +484,12 @@
|
||||
"nvenc_patch": true,
|
||||
"nvfbc_patch": false,
|
||||
"driver_url": "https://international.download.nvidia.com/XFree86/Linux-x86_64/450.102.04/NVIDIA-Linux-x86_64-450.102.04.run"
|
||||
},
|
||||
{
|
||||
"version": "460.32.03",
|
||||
"nvenc_patch": true,
|
||||
"nvfbc_patch": false,
|
||||
"driver_url": "https://international.download.nvidia.com/XFree86/Linux-x86_64/460.32.03/NVIDIA-Linux-x86_64-460.32.03.run"
|
||||
}
|
||||
],
|
||||
"example": {
|
||||
|
2
patch.sh
2
patch.sh
@ -133,6 +133,7 @@ declare -A patch_list=(
|
||||
["455.45.01"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
|
||||
["455.46.01"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
|
||||
["455.46.02"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
|
||||
["460.32.03"]='s/\x85\xc0\x41\x89\xc4\x0f\x85/\x31\xc0\x41\x89\xc4\x0f\x85/g'
|
||||
)
|
||||
|
||||
declare -A object_list=(
|
||||
@ -221,6 +222,7 @@ declare -A object_list=(
|
||||
["455.45.01"]='libnvidia-encode.so'
|
||||
["455.46.01"]='libnvidia-encode.so'
|
||||
["455.46.02"]='libnvidia-encode.so'
|
||||
["460.32.03"]='libnvidia-encode.so'
|
||||
)
|
||||
|
||||
check_version_supported () {
|
||||
|
Loading…
Reference in New Issue
Block a user