Skip to content

Commit 8471514

Browse files
committed
525.47.26
1 parent fc4452f commit 8471514

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NVIDIA Linux Open GPU Kernel Module Source
22

33
This is the source release of the NVIDIA Linux open GPU kernel modules,
4-
version 525.47.24.
4+
version 525.47.26.
55

66

77
## How to Build
@@ -17,7 +17,7 @@ as root:
1717

1818
Note that the kernel modules built here must be used with GSP
1919
firmware and user-space NVIDIA GPU driver components from a corresponding
20-
525.47.24 driver release. This can be achieved by installing
20+
525.47.26 driver release. This can be achieved by installing
2121
the NVIDIA GPU driver from the .run file using the `--no-kernel-modules`
2222
option. E.g.,
2323

@@ -167,15 +167,15 @@ for the target kernel.
167167
## Compatible GPUs
168168

169169
The open-gpu-kernel-modules can be used on any Turing or later GPU
170-
(see the table below). However, in the 525.47.24 release,
170+
(see the table below). However, in the 525.47.26 release,
171171
GeForce and Workstation support is still considered alpha-quality.
172172

173173
To enable use of the open kernel modules on GeForce and Workstation GPUs,
174174
set the "NVreg_OpenRmEnableUnsupportedGpus" nvidia.ko kernel module
175175
parameter to 1. For more details, see the NVIDIA GPU driver end user
176176
README here:
177177

178-
https://us.download.nvidia.com/XFree86/Linux-x86_64/525.47.24/README/kernel_open.html
178+
https://us.download.nvidia.com/XFree86/Linux-x86_64/525.47.26/README/kernel_open.html
179179

180180
In the below table, if three IDs are listed, the first is the PCI Device
181181
ID, the second is the PCI Subsystem Vendor ID, and the third is the PCI

kernel-open/Kbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ EXTRA_CFLAGS += -I$(src)/common/inc
7272
EXTRA_CFLAGS += -I$(src)
7373
EXTRA_CFLAGS += -Wall -MD $(DEFINES) $(INCLUDES) -Wno-cast-qual -Wno-error -Wno-format-extra-args
7474
EXTRA_CFLAGS += -D__KERNEL__ -DMODULE -DNVRM
75-
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"525.47.24\"
75+
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"525.47.26\"
7676

7777
EXTRA_CFLAGS += -Wno-unused-function
7878

src/common/inc/nvBldVer.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@
4343
#endif
4444

4545
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS)
46-
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r525/VK526_25-171"
47-
#define NV_BUILD_CHANGELIST_NUM (32854307)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r525/VK526_25-173"
47+
#define NV_BUILD_CHANGELIST_NUM (32874925)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r525/VK526_25-171"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (32854307)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r525/VK526_25-173"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (32874925)
5151

5252
#else /* Windows builds */
53-
#define NV_BUILD_BRANCH_VERSION "VK526_25-30"
54-
#define NV_BUILD_CHANGELIST_NUM (32854307)
53+
#define NV_BUILD_BRANCH_VERSION "VK526_25-32"
54+
#define NV_BUILD_CHANGELIST_NUM (32874925)
5555
#define NV_BUILD_TYPE "Official"
56-
#define NV_BUILD_NAME "531.98"
57-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (32854307)
56+
#define NV_BUILD_NAME "532.04"
57+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (32874925)
5858
#define NV_BUILD_BRANCH_BASE_VERSION R525
5959
#endif
6060
// End buildmeister python edited section

src/common/inc/nvUnixVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS) || defined(NV_VMWARE) || defined(NV_QNX) || defined(NV_INTEGRITY) || \
55
(defined(RMCFG_FEATURE_PLATFORM_GSP) && RMCFG_FEATURE_PLATFORM_GSP == 1)
66

7-
#define NV_VERSION_STRING "525.47.24"
7+
#define NV_VERSION_STRING "525.47.26"
88

99
#else
1010

version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
NVIDIA_VERSION = 525.47.24
1+
NVIDIA_VERSION = 525.47.26
22

33
# This file.
44
VERSION_MK_FILE := $(lastword $(MAKEFILE_LIST))

0 commit comments

Comments
 (0)