diff options
author | unmaintained <kingbeowulf@gmail.com> | 2019-09-13 23:36:34 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-09-13 23:36:34 +0700 |
commit | 822cebb5d9f4a45192535ded4d6d405cd8a3c1da (patch) | |
tree | d0188a34abc3ade0ef845283f73442307b84ca85 /system/nvidia-legacy340-kernel/nvidia-legacy340-kernel.SlackBuild | |
parent | a2cbab6b66c9a28d550842eefcbcd389c1146afa (diff) | |
download | slackbuilds-822cebb5d9f4a45192535ded4d6d405cd8a3c1da.tar.gz |
system/nvidia-legacy340-kernel: Updated for version 340.107.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/nvidia-legacy340-kernel/nvidia-legacy340-kernel.SlackBuild')
-rw-r--r-- | system/nvidia-legacy340-kernel/nvidia-legacy340-kernel.SlackBuild | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/system/nvidia-legacy340-kernel/nvidia-legacy340-kernel.SlackBuild b/system/nvidia-legacy340-kernel/nvidia-legacy340-kernel.SlackBuild index c89c49cce1..1679d12988 100644 --- a/system/nvidia-legacy340-kernel/nvidia-legacy340-kernel.SlackBuild +++ b/system/nvidia-legacy340-kernel/nvidia-legacy340-kernel.SlackBuild @@ -28,7 +28,7 @@ # See changelog.txt PRGNAM=nvidia-legacy340-kernel -VERSION=${VERSION:-340.104} +VERSION=${VERSION:-340.107} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -77,6 +77,9 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# Patch to compile on kernels 4.4.168+ +patch -p1 < $CWD/kernel-4.4.168.patch + (cd kernel || exit 1 make SYSSRC=$KERNELPATH module || exit 1 cd uvm @@ -85,7 +88,13 @@ find -L . \ mkdir -p $PKG/lib/modules/$KERNEL/kernel/drivers/video install -m 0664 kernel/nvidia.ko $PKG/lib/modules/$KERNEL/kernel/drivers/video/ -install -m 0664 kernel/uvm/nvidia-uvm.ko $PKG/lib/modules/$KERNEL/kernel/drivers/video/ + +# Unified Memory kernel module is incompatible with recent Linux kernels, +# and the GPU hardware generations that the 340.xx legacy driver series is +# intended to support do not support Unified Memory. +if [ -e kernel/uvm/nvidia-uvm.ko ]; then + install -m 0664 kernel/uvm/nvidia-uvm.ko $PKG/lib/modules/$KERNEL/kernel/drivers/video/ +fi # Make sure the X is specified to automagically load the # correct driver, since I always forget. You can remove |