diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-09-13 11:10:34 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-09-13 11:10:34 +0200 |
commit | f8d1667c7f96d88619c3e1b344fe191e1a813309 (patch) | |
tree | 4a481a9fe54e48d4d9d0ceb970523cb3b9c5b615 /acompiler/nvidia-96xx/Pkgfile | |
parent | 8c3f1c7c9f374184827df6a53a13b1b875c93834 (diff) | |
download | nutyx-extra-f8d1667c7f96d88619c3e1b344fe191e1a813309.tar.gz nutyx-extra-f8d1667c7f96d88619c3e1b344fe191e1a813309.tar.bz2 nutyx-extra-f8d1667c7f96d88619c3e1b344fe191e1a813309.tar.xz nutyx-extra-f8d1667c7f96d88619c3e1b344fe191e1a813309.zip |
nvidia-96xx, ajout post-install et 30-nvidia.conf
Diffstat (limited to 'acompiler/nvidia-96xx/Pkgfile')
-rw-r--r-- | acompiler/nvidia-96xx/Pkgfile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/acompiler/nvidia-96xx/Pkgfile b/acompiler/nvidia-96xx/Pkgfile index b3d87bd93..b69f5adda 100644 --- a/acompiler/nvidia-96xx/Pkgfile +++ b/acompiler/nvidia-96xx/Pkgfile @@ -6,7 +6,7 @@ name=nvidia-96xx version=96.43.18 -release=1 +release=2 kernel=`uname -r|sed "s/-NuTyX//"` source=(http://us.download.nvidia.com/XFree86/Linux-x86/$version/NVIDIA-Linux-x86-$version-pkg1.run\ ) @@ -45,5 +45,16 @@ build() { $PKG/usr/share/licences/nvidia-71xx/ install -D -m644 $PKGMK_WORK_DIR/src/NVIDIA-Linux-x86-$version-pkg1/usr/share/doc/README.txt $PKG/usr/share/doc/nvidia/README find $PKG/usr -type d -exec chmod 755 {} \; + mkdir -p $PKG/etc/X11/xorg.conf.d +cat > $PKG/etc/X11/xorg.conf.d/30-nvidia.conf << "EOF" +Section "Device" + Identifier "NVIDIA" + Driver "nvidia" +EndSection +Section "ServerFlags" +# temporary ignore abi mismatch until nvidia support xorg-server 1.9 + Option "IgnoreABI" "True" +EndSection +EOF } |