Skip to content

Commit

Permalink
package/nvidia-driver: bump to 450.57 for 64 bit and 390.138 for x86
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Stewart <[email protected]>
  • Loading branch information
paralin committed Aug 28, 2020
1 parent bf8a92d commit 7e18dfa
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
From c4233ad92256006f7db42efe7cdaf08079d74977 Mon Sep 17 00:00:00 2001
From: Christian Stewart <[email protected]>
Date: Sat, 22 Aug 2020 23:58:51 -0700
Subject: [PATCH] Add ignore CC mismatch unconditonally to conftest

Signed-off-by: Christian Stewart <[email protected]>
---
kernel/conftest.sh | 1 +
1 file changed, 1 insertion(+)

diff --git a/kernel/conftest.sh b/kernel/conftest.sh
index a4ebf81..4ad452e 100755
--- a/kernel/conftest.sh
+++ b/kernel/conftest.sh
@@ -3882,6 +3882,7 @@ case "$5" in
IGNORE_CC_MISMATCH=1
fi

+ IGNORE_CC_MISMATCH=1
if [ -n "$IGNORE_CC_MISMATCH" ]; then
exit 0
fi
--
2.28.0

4 changes: 2 additions & 2 deletions package/nvidia-driver/nvidia-driver.hash
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Locally computed
sha256 6f4af70ee3d03ed31c497a5d555164c56057b53ecedfc0d2c8de4b0b90728805 NVIDIA-Linux-x86-390.67.run
sha256 6df2ca1a7420b6751bcaf257d321b14f4e5f7ca54d77a43514912a3792ece65a NVIDIA-Linux-x86_64-390.67.run
sha256 7bf67323a393e857a09f979f155baa1ed13183653add0c344edf4d409f977878 NVIDIA-Linux-x86-390.138.run
sha256 d50c77fc4fda2a5c5ab2af64524da8a3214077bd7daf0dbf7c1986e0ca05d711 NVIDIA-Linux-x86_64-450.57.run
sha256 bd28b0c5aeeb00eb11d3ec6f6f3449d4b3a40100914258332734a53527997526 LICENSE
10 changes: 8 additions & 2 deletions package/nvidia-driver/nvidia-driver.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@
#
################################################################################

NVIDIA_DRIVER_VERSION = 390.67
NVIDIA_DRIVER_SUFFIX = $(if $(BR2_x86_64),_64)
NVIDIA_DRIVER_VERSION = 450.57

ifeq ($(BR2_x86_64),y)
NVIDIA_DRIVER_SUFFIX = _64
else
NVIDIA_DRIVER_VERSION = 390.138
endif # BR2_x86_64

NVIDIA_DRIVER_SITE = http://download.nvidia.com/XFree86/Linux-x86$(NVIDIA_DRIVER_SUFFIX)/$(NVIDIA_DRIVER_VERSION)
NVIDIA_DRIVER_SOURCE = NVIDIA-Linux-x86$(NVIDIA_DRIVER_SUFFIX)-$(NVIDIA_DRIVER_VERSION).run
NVIDIA_DRIVER_LICENSE = NVIDIA Software License
Expand Down

0 comments on commit 7e18dfa

Please sign in to comment.