diff options
Diffstat (limited to 'abs/core/nvidia-173xx')
-rw-r--r-- | abs/core/nvidia-173xx/PKGBUILD | 41 | ||||
-rw-r--r-- | abs/core/nvidia-173xx/nvidia.install | 14 |
2 files changed, 0 insertions, 55 deletions
diff --git a/abs/core/nvidia-173xx/PKGBUILD b/abs/core/nvidia-173xx/PKGBUILD deleted file mode 100644 index 5815dce..0000000 --- a/abs/core/nvidia-173xx/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# $Id: PKGBUILD 28363 2009-03-01 00:06:27Z pierre $ -# Maintainer : Thomas Baechler <thomas@archlinux.org> - -pkgname=nvidia-173xx -pkgver=173.14.30 -_kernver='2.6.39-LinHES' -pkgrel=4 -pkgdesc="NVIDIA drivers for kernel26, 173xx branch." -arch=('i686' 'x86_64') -[ "$CARCH" = "i686" ] && ARCH=x86 -[ "$CARCH" = "x86_64" ] && ARCH=x86_64 -url="http://www.nvidia.com/" -depends=('kernel26>=2.6.39' 'kernel26<2.6.40' 'nvidia-173xx-utils') -makedepends=('kernel26-headers>=2.6.39' 'kernel26-headers<2.6.40') -conflicts=('nvidia-96xx' 'nvidia') -license=('custom') -install=nvidia.install -source=("http://download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run") -options=(!strip) -md5sums=('665f9f730c18ab24a997e0e14b863262') -[ "$CARCH" = "x86_64" ] && md5sums=('8c47463ae14a2f742d0fa00160456745') - -build() { - cd $srcdir - sh NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run --extract-only - cd NVIDIA-Linux-$ARCH-${pkgver}-pkg0 - cd usr/src/nv/ - ln -s Makefile.kbuild Makefile - make SYSSRC=/lib/modules/${_kernver}/build module -} - -package() { - cd $srcdir/NVIDIA-Linux-$ARCH-${pkgver}-pkg0/usr/src/nv/ - mkdir -p $pkgdir/lib/modules/${_kernver}/kernel/drivers/video/ - install -m644 nvidia.ko $pkgdir/lib/modules/${_kernver}/kernel/drivers/video/ - mkdir -p $pkgdir/etc/modprobe.d - echo "blacklist nouveau" >> $pkgdir/etc/modprobe.d/nouveau_blacklist.conf - sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/nvidia.install - # gzip -9 module - find "$pkgdir" -name '*.ko' -exec gzip -9 {} \; -} diff --git a/abs/core/nvidia-173xx/nvidia.install b/abs/core/nvidia-173xx/nvidia.install deleted file mode 100644 index aea2fbb..0000000 --- a/abs/core/nvidia-173xx/nvidia.install +++ /dev/null @@ -1,14 +0,0 @@ -post_install() { - KERNEL_VERSION='2.6.39-LinHES' - depmod $KERNEL_VERSION -} - -post_upgrade() { - post_install - rmmod nvidia || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.' -} - -post_remove() { - KERNEL_VERSION='2.6.39-LinHES' - depmod $KERNEL_VERSION -} |