/packages/x11/driver/xf86-video-nvidia/install
http://github.com/OpenELEC/OpenELEC.tv · Shell · 56 lines · 23 code · 11 blank · 22 comment · 1 complexity · 165e6c3f183b93dc4a3efe33b6deae8f MD5 · raw file
- #!/bin/sh
- ################################################################################
- # This file is part of OpenELEC - http://www.openelec.tv
- # Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
- #
- # This Program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2, or (at your option)
- # any later version.
- #
- # This Program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with OpenELEC.tv; see the file COPYING. If not, write to
- # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
- # http://www.gnu.org/copyleft/gpl.html
- ################################################################################
- . config/options $1
- VER=`ls $BUILD/linux*/modules/lib/modules`
- mkdir -p $INSTALL/$XORG_PATH_MODULES/drivers
- cp -P $PKG_BUILD/nvidia_drv.so $INSTALL/$XORG_PATH_MODULES/drivers
- mkdir -p $INSTALL/$XORG_PATH_MODULES/extensions
- # rename to not conflicting with Mesa libGL.so
- cp -P $PKG_BUILD/libglx.so* $INSTALL/$XORG_PATH_MODULES/extensions/libglx_nvidia.so
- mkdir -p $INSTALL/etc/X11
- cp $PKG_DIR/config/*.conf $INSTALL/etc/X11
- mkdir -p $INSTALL/usr/lib
- cp -P $PKG_BUILD/libnvidia-glcore.so* $INSTALL/usr/lib
- cp -P $PKG_BUILD/libnvidia-ml.so* $INSTALL/usr/lib
- cp -P $PKG_BUILD/tls/libnvidia-tls.so* $INSTALL/usr/lib
- # rename to not conflicting with Mesa libGL.so
- cp -P $PKG_BUILD/libGL.so* $INSTALL/usr/lib/libGL_nvidia.so.1
- mkdir -p $INSTALL/lib/modules/$VER/nvidia
- cp $PKG_BUILD/kernel/nvidia.ko $INSTALL/lib/modules/$VER/nvidia
- mkdir -p $INSTALL/usr/bin
- cp $PKG_BUILD/nvidia-smi $INSTALL/usr/bin
- if [ "$VDPAU" = yes ]; then
- $SCRIPTS/install libvdpau
- mkdir -p $INSTALL/usr/lib/vdpau
- cp $PKG_BUILD/libvdpau_nvidia.so* $INSTALL/usr/lib/vdpau/libvdpau_nvidia.so.1
- ln -sf libvdpau_nvidia.so.1 $INSTALL/usr/lib/vdpau/libvdpau_nvidia.so
- fi