| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2008 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/nvidia-driver.eclass,v 1.9 2007/10/01 18:54:39 cardoe Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/nvidia-driver.eclass,v 1.13 2008/06/23 12:58:05 chainsaw Exp $ |
| 4 | |
4 | |
|
|
5 | # @ECLASS: nvidia-driver.eclass |
|
|
6 | # @MAINTAINER: <chainsaw@gentoo.org> |
| 5 | # |
7 | # |
| 6 | # Original Author: Doug Goldstein <cardoe@gentoo.org> |
8 | # Original Author: Doug Goldstein <cardoe@gentoo.org> |
|
|
9 | # @BLURB: Provide useful messages for nvidia-drivers based on currently installed Nvidia card |
|
|
10 | # @DESCRIPTION: |
| 7 | # Purpose: Provide useful messages for nvidia-drivers based on currently |
11 | # Provide useful messages for nvidia-drivers based on currently installed Nvidia |
| 8 | # installed Nvidia card |
12 | # card. It inherits versionator |
| 9 | # |
13 | |
| 10 | inherit versionator |
14 | inherit versionator |
| 11 | |
15 | |
| 12 | DEPEND="sys-apps/pciutils" |
16 | DEPEND="sys-apps/pciutils" |
| 13 | |
17 | |
| 14 | # the data below is derived from |
18 | # the data below is derived from |
| 15 | # http://us.download.nvidia.com/XFree86/Linux-x86_64/100.14.11/README/appendix-a.html |
19 | # http://us.download.nvidia.com/XFree86/Linux-x86_64/177.13/README/appendix-a.html |
| 16 | |
20 | |
| 17 | drv_96xx="0110 0111 0112 0113 0170 0171 0172 0173 0174 0175 0176 0177 0178 \ |
21 | drv_96xx="0110 0111 0112 0113 0170 0171 0172 0173 0174 0175 0176 0177 0178 \ |
| 18 | 0179 017a 017c 017d 0181 0182 0183 0185 0188 018a 018b 018c 01a0 01f0 0200 \ |
22 | 0179 017a 017c 017d 0181 0182 0183 0185 0188 018a 018b 018c 01a0 01f0 0200 \ |
| 19 | 0201 0202 0203 0250 0251 0253 0258 0259 025b 0280 0281 0282 0286 0288 0289 \ |
23 | 0201 0202 0203 0250 0251 0253 0258 0259 025b 0280 0281 0282 0286 0288 0289 \ |
| 20 | 028c" |
24 | 028c" |
| 21 | |
25 | |
| 22 | drv_71xx="0020 0028 0029 002c 002d 00a0 0100 0101 0103 0150 0151 0152 0153" |
26 | drv_71xx="0020 0028 0029 002c 002d 00a0 0100 0101 0103 0150 0151 0152 0153" |
| 23 | |
27 | |
|
|
28 | drv_173x="00FA 00FB 00FC 00FD 00FE 0301 0302 0308 0309 0311 0312 0314 031A \ |
|
|
29 | 031B 031C 0320 0321 0322 0323 0324 0325 0326 0327 0328 032A 032B 032C 032D \ |
|
|
30 | 0330 0331 0332 0333 0334 0338 033F 0341 0342 0343 0344 0347 0348 034C 034E" |
|
|
31 | |
| 24 | mask_96xx=">=x11-drivers/nvidia-drivers-97.0.0" |
32 | mask_96xx=">=x11-drivers/nvidia-drivers-97.0.0" |
| 25 | mask_71xx=">=x11-drivers/nvidia-drivers-72.0.0\n=x11-drivers/nvidia-1.0.9639" |
33 | mask_71xx=">=x11-drivers/nvidia-drivers-72.0.0" |
|
|
34 | mask_173x=">=x11-drivers/nvidia-drivers-177.0.0" |
| 26 | |
35 | |
|
|
36 | # @FUNCTION: nvidia-driver-get-card |
|
|
37 | # @DESCRIPTION: |
| 27 | # Retrieve the PCI device ID for each Nvidia video card you have |
38 | # Retrieve the PCI device ID for each Nvidia video card you have |
| 28 | nvidia-driver-get-card() { |
39 | nvidia-driver-get-card() { |
| 29 | local NVIDIA_CARD="$(/usr/sbin/lspci -d 10de: -n | \ |
40 | local NVIDIA_CARD="$(/usr/sbin/lspci -d 10de: -n | \ |
| 30 | awk '/ 0300: /{print $3}' | cut -d: -f2 | tr '\n' ' ')" |
41 | awk '/ 0300: /{print $3}' | cut -d: -f2 | tr '\n' ' ')" |
| 31 | |
42 | |
| … | |
… | |
| 51 | echo "$mask_71xx"; |
62 | echo "$mask_71xx"; |
| 52 | return 0; |
63 | return 0; |
| 53 | fi |
64 | fi |
| 54 | done |
65 | done |
| 55 | |
66 | |
|
|
67 | for drv in $drv_173x; do |
|
|
68 | if [ "x$card" = "x$drv" ]; then |
|
|
69 | echo "$mask_173x"; |
|
|
70 | return 0; |
|
|
71 | fi |
|
|
72 | done |
| 56 | done |
73 | done |
| 57 | |
74 | |
| 58 | echo ""; |
75 | echo ""; |
| 59 | return 1; |
76 | return 1; |
| 60 | } |
77 | } |
| 61 | |
78 | |
|
|
79 | # @FUNCTION: nvidia-driver-check-warning |
|
|
80 | # @DESCRIPTION: |
|
|
81 | # Prints out a warning if the driver does not work w/ the installed video card |
| 62 | nvidia-driver-check-warning() { |
82 | nvidia-driver-check-warning() { |
| 63 | local NVIDIA_MASK="$(nvidia-driver-get-mask)" |
83 | local NVIDIA_MASK="$(nvidia-driver-get-mask)" |
| 64 | if [ -n "$NVIDIA_MASK" ]; then |
84 | if [ -n "$NVIDIA_MASK" ]; then |
| 65 | version_compare "${NVIDIA_MASK##*-}" "${PV}" |
85 | version_compare "${NVIDIA_MASK##*-}" "${PV}" |
| 66 | r=$? |
86 | r=$? |