565.57.01

This commit is contained in:
Aaron Plattner
2024-10-22 14:02:03 -07:00
parent c46718d26c
commit d914101bdd
5 changed files with 13 additions and 4 deletions

View File

@@ -1410,6 +1410,7 @@ static int test_kernel_modules_helper(Options *op, Package *p, int pause_udev)
"i2c-core",
"drm",
"drm-kms-helper",
"drm-ttm-helper",
"vfio_mdev",
"vfio",
"mdev",

10
misc.c
View File

@@ -1665,9 +1665,9 @@ int check_for_running_x(Options *op)
/*
* is_vgpu_host_package() - Check if 'is_vgpu_host_package.txt' file is present
* in the package. File 'is_vgpu_host_package.txt' is present in vGPU host
* packages only. Environment variables VGX_BUILD and VGX_KVM_BUILD are used to
* install vGPU host driver using *-internal.run on Xenserver and KVM
* respectively.
* packages only. Environment variables VGX_BUILD, VGX_KVM_BUILD and
* VGX_DEVICE_VM_BUILD are used to install vGPU host driver using *-internal.run
* on Xenserver, KVM and Device VM respectively.
*/
static int is_vgpu_host_package(void)
{
@@ -1683,6 +1683,10 @@ static int is_vgpu_host_package(void)
return TRUE;
}
if (getenv("VGX_DEVICE_VM_BUILD") != NULL) {
return TRUE;
}
return FALSE;
}

View File

@@ -1539,7 +1539,9 @@ static const GPU_FLAGS GpuFlagList[] = {
{ 0x2335, GPU_FLAGS_PROPRIETARY_POSSIBLE },
{ 0x2339, GPU_FLAGS_PROPRIETARY_POSSIBLE },
{ 0x233a, GPU_FLAGS_PROPRIETARY_POSSIBLE },
{ 0x233b, GPU_FLAGS_PROPRIETARY_POSSIBLE },
{ 0x2342, GPU_FLAGS_PROPRIETARY_POSSIBLE },
{ 0x2348, GPU_FLAGS_PROPRIETARY_POSSIBLE },
{ 0x2414, GPU_FLAGS_PROPRIETARY_POSSIBLE },
{ 0x2420, GPU_FLAGS_PROPRIETARY_POSSIBLE },
{ 0x2438, GPU_FLAGS_PROPRIETARY_POSSIBLE },

View File

@@ -45,6 +45,7 @@ CXX_ONLY_CFLAGS ?=
LDFLAGS ?=
BIN_LDFLAGS ?=
EXTRA_CFLAGS ?=
EXTRA_LDFLAGS ?=
STACK_USAGE_WARNING ?=
CFLAGS += $(if $(STACK_USAGE_WARNING),-Wstack-usage=$(STACK_USAGE_WARNING))
@@ -89,6 +90,7 @@ ifeq ($(DEVELOP),1)
endif
CFLAGS += $(EXTRA_CFLAGS)
LDFLAGS += $(EXTRA_LDFLAGS)
STRIP_CMD ?= strip
DO_STRIP ?= 1

View File

@@ -1,4 +1,4 @@
NVIDIA_VERSION = 560.35.03
NVIDIA_VERSION = 565.57.01
# This file.
VERSION_MK_FILE := $(lastword $(MAKEFILE_LIST))