Skip to content

Commit c7d7d95

Browse files
committed
535.43.11
1 parent dfd3023 commit c7d7d95

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Release 535 Entries
44

5+
### [535.43.11] 2023-10-05
6+
57
### [535.43.10] 2023-09-27
68

79
### [535.43.09] 2023-09-01

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 535.43.10.
4+
version 535.43.11.
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-
535.43.10 driver release. This can be achieved by installing
20+
535.43.11 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

@@ -180,15 +180,15 @@ software applications.
180180
## Compatible GPUs
181181

182182
The open-gpu-kernel-modules can be used on any Turing or later GPU
183-
(see the table below). However, in the 535.43.10 release,
183+
(see the table below). However, in the 535.43.11 release,
184184
GeForce and Workstation support is still considered alpha-quality.
185185

186186
To enable use of the open kernel modules on GeForce and Workstation GPUs,
187187
set the "NVreg_OpenRmEnableUnsupportedGpus" nvidia.ko kernel module
188188
parameter to 1. For more details, see the NVIDIA GPU driver end user
189189
README here:
190190

191-
https://us.download.nvidia.com/XFree86/Linux-x86_64/535.43.10/README/kernel_open.html
191+
https://us.download.nvidia.com/XFree86/Linux-x86_64/535.43.11/README/kernel_open.html
192192

193193
In the below table, if three IDs are listed, the first is the PCI Device
194194
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 $(DEFINES) $(INCLUDES) -Wno-cast-qual -Wno-error -Wno-format-extra-args
7474
EXTRA_CFLAGS += -D__KERNEL__ -DMODULE -DNVRM
75-
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"535.43.10\"
75+
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"535.43.11\"
7676

7777
ifneq ($(SYSSRCHOST1X),)
7878
EXTRA_CFLAGS += -I$(SYSSRCHOST1X)

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/r535/VK535_87-131"
47-
#define NV_BUILD_CHANGELIST_NUM (33340728)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r535/VK535_87-132"
47+
#define NV_BUILD_CHANGELIST_NUM (33372536)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r535/VK535_87-131"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33340728)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r535/VK535_87-132"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33372536)
5151

5252
#else /* Windows builds */
53-
#define NV_BUILD_BRANCH_VERSION "VK535_87-10"
54-
#define NV_BUILD_CHANGELIST_NUM (33340728)
53+
#define NV_BUILD_BRANCH_VERSION "VK535_87-11"
54+
#define NV_BUILD_CHANGELIST_NUM (33372536)
5555
#define NV_BUILD_TYPE "Official"
56-
#define NV_BUILD_NAME "537.54"
57-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33340728)
56+
#define NV_BUILD_NAME "537.59"
57+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (33372536)
5858
#define NV_BUILD_BRANCH_BASE_VERSION R535
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 "535.43.10"
7+
#define NV_VERSION_STRING "535.43.11"
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 = 535.43.10
1+
NVIDIA_VERSION = 535.43.11
22

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

0 commit comments

Comments
 (0)