diff options
author | Edward W. Koenig <kingbeowulf@gmail.com> | 2018-11-09 23:36:24 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-11-10 07:47:59 +0700 |
commit | 0aba99b87c73e0b06ddd72aa201d5bd424949feb (patch) | |
tree | a179ce8f999a3739ea94a0793751888a55f1c735 /system/nvidia-kernel/nvidia-kernel.SlackBuild | |
parent | 666fb8a29026d74ec70dd66f19407c85bcd33785 (diff) |
system/nvidia-kernel: Updated for version 410.73.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'system/nvidia-kernel/nvidia-kernel.SlackBuild')
-rw-r--r-- | system/nvidia-kernel/nvidia-kernel.SlackBuild | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/system/nvidia-kernel/nvidia-kernel.SlackBuild b/system/nvidia-kernel/nvidia-kernel.SlackBuild index 602e53b27b6c..9ed4fe2247e3 100644 --- a/system/nvidia-kernel/nvidia-kernel.SlackBuild +++ b/system/nvidia-kernel/nvidia-kernel.SlackBuild @@ -28,7 +28,7 @@ # see nvidia-driver/changelog.txt PRGNAM=nvidia-kernel -VERSION=${VERSION:-390.87} +VERSION=${VERSION:-410.73} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -41,20 +41,17 @@ PKGVER=${VERSION}_$(echo $KERNEL | tr - _) if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac fi -if [ "$ARCH" = "i486" ]; then - TARGET="x86" - SRCSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - TARGET="x86" - SRCSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then +if [ "$ARCH" = "x86_64" ]; then TARGET="x86_64" +else + echo "$ARCH is not supported." + exit 1 fi unset ARCH @@ -92,7 +89,7 @@ if [ "$TARGET" = "x86_64" ]; then install -m 0664 kernel/nvidia-uvm.ko $PKG/lib/modules/$KERNEL/kernel/drivers/video/ fi -# Make sure the X is specified to automagically load the +# Make sure the X is specified to automagically load the # correct driver, since I always forget. You can remove # this file if you have an equivilent entry in /etc/X11/xorg.d |