From 69a4ff238206a3cfe48223e3fae193c7beeba136 Mon Sep 17 00:00:00 2001 From: Edward Koenig Date: Sun, 7 Jul 2013 23:55:28 -0500 Subject: system/nvidia-legacy304-kernel: Added. Signed-off-by: Robby Workman --- system/nvidia-legacy304-kernel/10-nvidia.conf | 6 ++ system/nvidia-legacy304-kernel/README | 12 +++ system/nvidia-legacy304-kernel/doinst.sh | 3 + .../nvidia-legacy304-kernel.SlackBuild | 113 +++++++++++++++++++++ .../nvidia-legacy304-kernel.info | 10 ++ system/nvidia-legacy304-kernel/slack-desc | 19 ++++ 6 files changed, 163 insertions(+) create mode 100644 system/nvidia-legacy304-kernel/10-nvidia.conf create mode 100644 system/nvidia-legacy304-kernel/README create mode 100644 system/nvidia-legacy304-kernel/doinst.sh create mode 100644 system/nvidia-legacy304-kernel/nvidia-legacy304-kernel.SlackBuild create mode 100644 system/nvidia-legacy304-kernel/nvidia-legacy304-kernel.info create mode 100644 system/nvidia-legacy304-kernel/slack-desc (limited to 'system/nvidia-legacy304-kernel') diff --git a/system/nvidia-legacy304-kernel/10-nvidia.conf b/system/nvidia-legacy304-kernel/10-nvidia.conf new file mode 100644 index 0000000000..a8992c2a0d --- /dev/null +++ b/system/nvidia-legacy304-kernel/10-nvidia.conf @@ -0,0 +1,6 @@ +Section "Device" + Identifier "Device0" + Driver "nvidia" + VendorName "Nvidia Corporation" + BoardName "" +EndSection diff --git a/system/nvidia-legacy304-kernel/README b/system/nvidia-legacy304-kernel/README new file mode 100644 index 0000000000..485a3adf40 --- /dev/null +++ b/system/nvidia-legacy304-kernel/README @@ -0,0 +1,12 @@ +This is the kernel-module needed by the proprietary binary nvidia driver. +You also need the nvidia-legacy304-driver package from SlackBuilds.org. + +To build the package for a kernel different from the running one, +start the script setting the KERNEL variable as in + KERNEL=2.6.38.8 ./nvidia-legacy304-kernel.SlackBuild + +A default config file is placed at /usr/share/X11/xorg.conf.d/10-nvidia.conf +to make sure that X loads the nvidia module. If you need to make changes, +copy that file to /etc/X11/xorg.conf.d/ and edit the copy. + +The xf86-video-nouveau-blacklist package from /extra is required. diff --git a/system/nvidia-legacy304-kernel/doinst.sh b/system/nvidia-legacy304-kernel/doinst.sh new file mode 100644 index 0000000000..dcfb80855f --- /dev/null +++ b/system/nvidia-legacy304-kernel/doinst.sh @@ -0,0 +1,3 @@ + +chroot . /sbin/depmod -a @KERNEL@ 2>/dev/null + diff --git a/system/nvidia-legacy304-kernel/nvidia-legacy304-kernel.SlackBuild b/system/nvidia-legacy304-kernel/nvidia-legacy304-kernel.SlackBuild new file mode 100644 index 0000000000..bf0639d2a1 --- /dev/null +++ b/system/nvidia-legacy304-kernel/nvidia-legacy304-kernel.SlackBuild @@ -0,0 +1,113 @@ +#!/bin/sh + +# Slackware build script for nvidia-kernel + +# Copyright 2007-2011 Heinz Wiesinger, Amsterdam, The Netherlands +# Copyright 2011-2013 Edward W. Koenig, Vancouver, WA, USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +# Thanks to Robby Workman for suggestions to improve this script. +# +# ChangeLog +# ------------------------------------------------------------------------------ +# 1.0 20-MAR-2011 New Maintainer: Edward W. Koenig +# 1.1 10-APR-2011 updated to new version, testing 13.37rc4.6692 +# 1.2 27-MAY-2011 new version, blacklist nouveau, fix ups, tested 13.37-stable +# 1.5 01-JULY-2011 new version, kill SRCSUFFIX nonsense, use blacklist in /extra +# 1.6 30-AUG-2011 version bump, typo clean ups +# 1.7 21-OCT-2011 version bump. +# 1.7 26-DEC-2011 version bump +# 1.8 24-MAR-2012 new version +# 1.9 15-JUL-2012 new version - Short Lived Branch +# 2.0 25-SEP-2012 new version - Long Lived Branch +# 3.0 06-JUL-2013 Legacy 304 branch + +PRGNAM=nvidia-legacy304-kernel +VERSION=304.88 +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +KERNEL=${KERNEL:-$(uname -r)} +KERNELPATH=${KERNELPATH:-/lib/modules/${KERNEL}/build} + +PKGVER=${VERSION}_$(echo $KERNEL | tr - _) + +COMPAT32="" + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + 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 + TARGET="x86_64" + COMPAT32="-no-compat32" +fi + +unset ARCH + +SRCNAM=NVIDIA-Linux-$TARGET-${VERSION}$COMPAT32 + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=${PKG:-$TMP/package-$PRGNAM} +OUTPUT=${OUTPUT:-/tmp} + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP || exit 1 +rm -rf $SRCNAM +sh $CWD/$SRCNAM.run --extract-only || exit 1 +cd $SRCNAM || exit 1 +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +cd kernel || exit 1 + +make SYSSRC=$KERNELPATH module || exit 1 + +mkdir -p $PKG/lib/modules/$KERNEL/kernel/drivers/video +install -m 0664 nvidia.ko $PKG/lib/modules/$KERNEL/kernel/drivers/video/ + +# Make sure the X is specified to automagically load the +# correct driver, since I always forget. + +mkdir -p $PKG/usr/share/X11/xorg.conf.d/ +cat $CWD/10-nvidia.conf > $PKG/usr/share/X11/xorg.conf.d/10-nvidia.conf + +mkdir -p $PKG/usr/doc/$PRGNAM-$PKGVER +cp -a README.template $PKG/usr/doc/$PRGNAM-$PKGVER +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$PKGVER/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +sed "s%@KERNEL@%$KERNEL%" $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$PKGVER-$TARGET-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/system/nvidia-legacy304-kernel/nvidia-legacy304-kernel.info b/system/nvidia-legacy304-kernel/nvidia-legacy304-kernel.info new file mode 100644 index 0000000000..1a62bd2ef9 --- /dev/null +++ b/system/nvidia-legacy304-kernel/nvidia-legacy304-kernel.info @@ -0,0 +1,10 @@ +PRGNAM="nvidia-legacy304-kernel" +VERSION="304.88" +HOMEPAGE="http://www.nvidia.com" +DOWNLOAD="ftp://download.nvidia.com/XFree86/Linux-x86/304.88/NVIDIA-Linux-x86-304.88.run" +MD5SUM="f60d4aef766029c98914ed665235029a" +DOWNLOAD_x86_64="ftp://download.nvidia.com/XFree86/Linux-x86_64/304.88/NVIDIA-Linux-x86_64-304.88-no-compat32.run" +MD5SUM_x86_64="35e0c7d30de795cccb6b95bda991fb77" +REQUIRES="" +MAINTAINER="Edward Koenig" +EMAIL="kingbeowulf@gmail.com" diff --git a/system/nvidia-legacy304-kernel/slack-desc b/system/nvidia-legacy304-kernel/slack-desc new file mode 100644 index 0000000000..2468b24bb4 --- /dev/null +++ b/system/nvidia-legacy304-kernel/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +nvidia-legacy304-kernel: nvidia-legacy304-kernel (Kernel Interface for the nvidia driver) +nvidia-legacy304-kernel: +nvidia-legacy304-kernel: This is the kernel module needed by the binary nvidia-driver. +nvidia-legacy304-kernel: +nvidia-legacy304-kernel: +nvidia-legacy304-kernel: +nvidia-legacy304-kernel: +nvidia-legacy304-kernel: +nvidia-legacy304-kernel: +nvidia-legacy304-kernel: +nvidia-legacy304-kernel: -- cgit v1.2.3