From 856464570255f9d8617c3687f8733933662b6700 Mon Sep 17 00:00:00 2001 From: detiam Date: Thu, 13 Jun 2024 03:04:05 +0800 Subject: [PATCH] linux: add support for driver 550.90.07 --- README.md | 1 + drivers.json | 10 ++++++++-- patch-fbc.sh | 1 + patch.sh | 1 + 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 219eb4b..bce4e20 100644 --- a/README.md +++ b/README.md @@ -209,6 +209,7 @@ If you want to donate, please send it to your favorite open source organizations | 550.67 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/550.67/NVIDIA-Linux-x86_64-550.67.run) | | 550.76 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/550.76/NVIDIA-Linux-x86_64-550.76.run) | | 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) | ## Synopsis diff --git a/drivers.json b/drivers.json index dfcedb2..9fbc6f7 100644 --- a/drivers.json +++ b/drivers.json @@ -1032,6 +1032,12 @@ "nvfbc_patch": true, "driver_url": "" }, + { + "version": "535.171.04", + "nvenc_patch": true, + "nvfbc_patch": true, + "driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/535.171.04/NVIDIA-Linux-x86_64-535.171.04.run" + }, { "version": "550.67", "nvenc_patch": true, @@ -1051,10 +1057,10 @@ "driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/550.78/NVIDIA-Linux-x86_64-550.78.run" }, { - "version": "535.171.04", + "version": "550.90.07", "nvenc_patch": true, "nvfbc_patch": true, - "driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/535.171.04/NVIDIA-Linux-x86_64-535.171.04.run" + "driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/550.90.07/NVIDIA-Linux-x86_64-550.90.07.run" }, { "version": "555.42.02", diff --git a/patch-fbc.sh b/patch-fbc.sh index 07e87a3..f95d5ed 100755 --- a/patch-fbc.sh +++ b/patch-fbc.sh @@ -201,6 +201,7 @@ declare -A patch_list=( ["550.67"]='s/\x83\xfe\x01\x73\x08\x48/\x83\xfe\x01\x90\x90\x48/' ["550.76"]='s/\x83\xfe\x01\x73\x08\x48/\x83\xfe\x01\x90\x90\x48/' ["550.78"]='s/\x83\xfe\x01\x73\x08\x48/\x83\xfe\x01\x90\x90\x48/' + ["550.90.07"]='s/\x83\xfe\x01\x73\x08\x48/\x83\xfe\x01\x90\x90\x48/' ["555.42.02"]='s/\x83\xfe\x01\x73\x08\x48/\x83\xfe\x01\x90\x90\x48/' ) diff --git a/patch.sh b/patch.sh index c61f8a8..aa89c03 100755 --- a/patch.sh +++ b/patch.sh @@ -240,6 +240,7 @@ declare -A patch_list=( ["550.67"]='s/\xe8\x25\x54\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x25\x54\xfe\xff\x29\xc0\x41\x89\xc4/g' ["550.76"]='s/\xe8\x25\x54\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x25\x54\xfe\xff\x29\xc0\x41\x89\xc4/g' ["550.78"]='s/\xe8\x25\x54\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x25\x54\xfe\xff\x29\xc0\x41\x89\xc4/g' + ["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' )