Skip to content

Commit ad7cd7e

Browse files
committed
595.44.09
1 parent 5699df6 commit ad7cd7e

6 files changed

Lines changed: 17 additions & 15 deletions

File tree

README.md

Lines changed: 4 additions & 3 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 595.44.08.
4+
version 595.44.09.
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-
595.44.08 driver release. This can be achieved by installing
20+
595.44.09 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

@@ -185,7 +185,7 @@ table below).
185185
For details on feature support and limitations, see the NVIDIA GPU driver
186186
end user README here:
187187

188-
https://us.download.nvidia.com/XFree86/Linux-x86_64/595.44.08/README/kernel_open.html
188+
https://us.download.nvidia.com/XFree86/Linux-x86_64/595.44.09/README/kernel_open.html
189189

190190
For vGPU support, please refer to the README.vgpu packaged in the vGPU Host
191191
Package for more details.
@@ -1020,6 +1020,7 @@ Subsystem Device ID.
10201020
| NVIDIA RTX PRO 500 Blackwell Embedded GPU | 2DF9 |
10211021
| NVIDIA GB10 | 2E12 10DE 21EC |
10221022
| NVIDIA GeForce RTX 5070 | 2F04 |
1023+
| NVIDIA GeForce RTX 5060 | 2F06 |
10231024
| NVIDIA GeForce RTX 5070 Ti Laptop GPU | 2F18 |
10241025
| NVIDIA RTX PRO 3000 Blackwell Generation Laptop GPU | 2F38 |
10251026
| NVIDIA GeForce RTX 5070 Ti Laptop GPU | 2F58 |

kernel-open/Kbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ ccflags-y += -I$(src)/common/inc
7979
ccflags-y += -I$(src)
8080
ccflags-y += -Wall $(DEFINES) $(INCLUDES) -Wno-cast-qual -Wno-format-extra-args
8181
ccflags-y += -D__KERNEL__ -DMODULE -DNVRM
82-
ccflags-y += -DNV_VERSION_STRING=\"595.44.08\"
82+
ccflags-y += -DNV_VERSION_STRING=\"595.44.09\"
8383

8484
# Include and link Tegra out-of-tree modules.
8585
ifneq ($(wildcard /usr/src/nvidia/nvidia-public),)

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/r595/VK595_35-129"
47-
#define NV_BUILD_CHANGELIST_NUM (37990091)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r595/VK595_35-130"
47+
#define NV_BUILD_CHANGELIST_NUM (38037966)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r595/VK595_35-129"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (37990091)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r595/VK595_35-130"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (38037966)
5151

5252
#else /* Windows builds */
53-
#define NV_BUILD_BRANCH_VERSION "VK595_35-12"
54-
#define NV_BUILD_CHANGELIST_NUM (37990091)
53+
#define NV_BUILD_BRANCH_VERSION "VK595_35-13"
54+
#define NV_BUILD_CHANGELIST_NUM (38037966)
5555
#define NV_BUILD_TYPE "Official"
56-
#define NV_BUILD_NAME "596.54"
57-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (37990091)
56+
#define NV_BUILD_NAME "596.60"
57+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (38037966)
5858
#define NV_BUILD_BRANCH_BASE_VERSION R595
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
@@ -5,7 +5,7 @@
55
(defined(RMCFG_FEATURE_PLATFORM_GSP) && RMCFG_FEATURE_PLATFORM_GSP == 1) || \
66
defined(NV_DCECORE)
77

8-
#define NV_VERSION_STRING "595.44.08"
8+
#define NV_VERSION_STRING "595.44.09"
99

1010
#else
1111

src/nvidia/generated/g_nv_name_released.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,7 @@ static const CHIPS_RELEASED sChipsReleased[] = {
856856
{ 0x2DF9, 0x0000, 0x0000, "NVIDIA RTX PRO 500 Blackwell Embedded GPU" },
857857
{ 0x2E12, 0x21ec, 0x10de, "NVIDIA GB10" },
858858
{ 0x2F04, 0x0000, 0x0000, "NVIDIA GeForce RTX 5070" },
859+
{ 0x2F06, 0x0000, 0x0000, "NVIDIA GeForce RTX 5060" },
859860
{ 0x2F18, 0x0000, 0x0000, "NVIDIA GeForce RTX 5070 Ti Laptop GPU" },
860861
{ 0x2F38, 0x0000, 0x0000, "NVIDIA RTX PRO 3000 Blackwell Generation Laptop GPU" },
861862
{ 0x2F58, 0x0000, 0x0000, "NVIDIA GeForce RTX 5070 Ti Laptop GPU" },

version.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
NVIDIA_VERSION = 595.44.08
2-
NVIDIA_NVID_VERSION = 595.44.08
1+
NVIDIA_VERSION = 595.44.09
2+
NVIDIA_NVID_VERSION = 595.44.09
33
NVIDIA_NVID_EXTRA =
44

55
# This file.

0 commit comments

Comments
 (0)