| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2011 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.1 2007/07/05 19:03:24 cardoe Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/nvidia-driver.eclass,v 1.17 2012/11/18 06:35:06 cardoe Exp $ |
| 4 | |
4 | |
| 5 | # |
5 | # @ECLASS: nvidia-driver.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # chainsaw@gentoo.org |
|
|
8 | # @AUTHOR: |
| 6 | # Original Author: Doug Goldstein <cardoe@gentoo.org> |
9 | # Original author: Doug Goldstein <cardoe@gentoo.org> |
|
|
10 | # @BLURB: Provide useful messages for nvidia-drivers based on currently installed Nvidia card |
|
|
11 | # @DESCRIPTION: |
| 7 | # Purpose: Provide useful messages for nvidia-drivers based on currently |
12 | # Provide useful messages for nvidia-drivers based on currently installed Nvidia |
| 8 | # installed Nvidia card |
13 | # card. It inherits versionator. |
| 9 | # |
14 | |
|
|
15 | inherit versionator |
| 10 | |
16 | |
| 11 | DEPEND="sys-apps/pciutils" |
17 | DEPEND="sys-apps/pciutils" |
|
|
18 | |
|
|
19 | # the data below is derived from |
|
|
20 | # http://us.download.nvidia.com/XFree86/Linux-x86_64/177.13/README/appendix-a.html |
| 12 | |
21 | |
| 13 | drv_96xx="0110 0111 0112 0113 0170 0171 0172 0173 0174 0175 0176 0177 0178 \ |
22 | drv_96xx="0110 0111 0112 0113 0170 0171 0172 0173 0174 0175 0176 0177 0178 \ |
| 14 | 0179 017a 017c 017d 0181 0182 0183 0185 0188 018a 018b 018c 01a0 01f0 0200 \ |
23 | 0179 017a 017c 017d 0181 0182 0183 0185 0188 018a 018b 018c 01a0 01f0 0200 \ |
| 15 | 0201 0202 0203 0250 0251 0253 0258 0259 025b 0280 0281 0282 0286 0288 0289 \ |
24 | 0201 0202 0203 0250 0251 0253 0258 0259 025b 0280 0281 0282 0286 0288 0289 \ |
| 16 | 028c" |
25 | 028c" |
| 17 | |
26 | |
| 18 | drv_71xx="0020 0028 0029 002c 002d 00a0 0100 0101 0103 0150 0151 0152 0153" |
27 | drv_71xx="0020 0028 0029 002c 002d 00a0 0100 0101 0103 0150 0151 0152 0153" |
| 19 | |
28 | |
| 20 | mask_96xx=">=x11-drivers/nvidia-drivers-1.0.9700" |
29 | drv_173x="00fa 00fb 00fc 00fd 00fe 0301 0302 0308 0309 0311 0312 0314 031a \ |
| 21 | mask_71xx=">=x11-drivers/nvidia-drivers-1.0.7200" |
30 | 031b 031c 0320 0321 0322 0323 0324 0325 0326 0327 0328 032a 032b 032c 032d \ |
|
|
31 | 0330 0331 0332 0333 0334 0338 033f 0341 0342 0343 0344 0347 0348 034c 034e" |
| 22 | |
32 | |
|
|
33 | drv_304x="0040 0041 0042 0043 0044 0045 0046 0047 0048 004e 0090 0091 0092 \ |
|
|
34 | 0093 0095 0098 0099 009d 00c0 00c1 00c2 00c3 00c8 00c9 00cc 00cd 00ce 00f1 \ |
|
|
35 | 00f2 00f3 00f4 00f5 00f6 00f8 00f9 0140 0141 0142 0143 0144 0145 0146 0147 \ |
|
|
36 | 0148 0149 014a 014c 014d 014e 014f 0160 0161 0162 0163 0164 0165 0166 0167 \ |
|
|
37 | 0168 0169 016a 01d0 01d1 01d2 01d3 01d6 01d7 01d8 01da 01db 01dc 01dd 01de \ |
|
|
38 | 01de 01df 0211 0212 0215 0218 0221 0222 0240 0241 0242 0244 0245 0247 0290 \ |
|
|
39 | 0291 0292 0293 0294 0295 0297 0298 0299 029a 029b 029c 029d 029e 029f 02e0 \ |
|
|
40 | 02e1 02e2 02e3 02e4 038b 0390 0391 0392 0393 0394 0395 0397 0398 0399 039c \ |
|
|
41 | 039e 03d0 03d1 03d2 03d5 03d6 0531 0533 053a 053b 053e 07e0 07e1 07e2 07e3 \ |
|
|
42 | 07e5" |
|
|
43 | |
|
|
44 | mask_96xx=">=x11-drivers/nvidia-drivers-97.0.0" |
|
|
45 | mask_71xx=">=x11-drivers/nvidia-drivers-72.0.0" |
|
|
46 | mask_173x=">=x11-drivers/nvidia-drivers-177.0.0" |
|
|
47 | mask_304x=">=x11-drivers/nvidia-drivers-305.0.0" |
|
|
48 | |
|
|
49 | # @FUNCTION: nvidia-driver-get-card |
|
|
50 | # @DESCRIPTION: |
| 23 | # Retrieve the PCI device ID for each Nvidia video card you have |
51 | # Retrieve the PCI device ID for each Nvidia video card you have |
| 24 | nvidia-driver-get-card() { |
52 | nvidia-driver-get-card() { |
| 25 | local NVIDIA_CARD="$(/usr/sbin/lspci -d 10de: -n | \ |
53 | local NVIDIA_CARD="$(/usr/sbin/lspci -d 10de: -n | \ |
| 26 | awk '/ 0300: /{print $3}' | cut -d: -f2 | tr '\n' ' ')" |
54 | awk '/ 0300: /{print $3}' | cut -d: -f2 | tr '\n' ' ')" |
| 27 | |
55 | |
| … | |
… | |
| 47 | echo "$mask_71xx"; |
75 | echo "$mask_71xx"; |
| 48 | return 0; |
76 | return 0; |
| 49 | fi |
77 | fi |
| 50 | done |
78 | done |
| 51 | |
79 | |
|
|
80 | for drv in $drv_173x; do |
|
|
81 | if [ "x$card" = "x$drv" ]; then |
|
|
82 | echo "$mask_173x"; |
|
|
83 | return 0; |
|
|
84 | fi |
|
|
85 | done |
|
|
86 | |
|
|
87 | for drv in $drv_304x; do |
|
|
88 | if [ "x$card" = "x$drv" ]; then |
|
|
89 | echo "$mask_304x"; |
|
|
90 | return 0; |
|
|
91 | fi |
|
|
92 | done |
| 52 | done |
93 | done |
| 53 | |
94 | |
| 54 | echo ""; |
95 | echo ""; |
| 55 | return 1; |
96 | return 1; |
| 56 | } |
97 | } |
| 57 | |
98 | |
|
|
99 | # @FUNCTION: nvidia-driver-check-warning |
|
|
100 | # @DESCRIPTION: |
|
|
101 | # Prints out a warning if the driver does not work w/ the installed video card |
| 58 | nvidia-driver-check-warning() { |
102 | nvidia-driver-check-warning() { |
| 59 | local NVIDIA_MASK="$(nvidia-driver-get-mask)" |
103 | local NVIDIA_MASK="$(nvidia-driver-get-mask)" |
| 60 | if [ -n "$NVIDIA_MASK" ]; then |
104 | if [ -n "$NVIDIA_MASK" ]; then |
|
|
105 | version_compare "${NVIDIA_MASK##*-}" "${PV}" |
|
|
106 | r=$? |
|
|
107 | |
|
|
108 | if [ "x$r" = "x1" ]; then |
| 61 | ewarn "***** WARNING *****" |
109 | ewarn "***** WARNING *****" |
| 62 | ewarn |
110 | ewarn |
| 63 | ewarn "You are currently installing a version of nvidia-drivers that is" |
111 | ewarn "You are currently installing a version of nvidia-drivers that is" |
| 64 | ewarn "known not to work with a video card you have installed on your" |
112 | ewarn "known not to work with a video card you have installed on your" |
| 65 | ewarn "system. If this is intentional, please ignore this. If it is not" |
113 | ewarn "system. If this is intentional, please ignore this. If it is not" |
| 66 | ewarn "please perform the following steps:" |
114 | ewarn "please perform the following steps:" |
| 67 | ewarn |
115 | ewarn |
| 68 | ewarn "Add the following mask entry to /etc/portage/package.mask by" |
116 | ewarn "Add the following mask entry to /etc/portage/package.mask by" |
| 69 | if [ -d "${ROOT}/etc/portage/package.mask" ]; then |
117 | if [ -d "${ROOT}/etc/portage/package.mask" ]; then |
| 70 | ewarn "echo \"$NVIDIA_MASK\" > /etc/portage/package.mask/nvidia-drivers" |
118 | ewarn "echo \"$NVIDIA_MASK\" > /etc/portage/package.mask/nvidia-drivers" |
| 71 | else |
119 | else |
| 72 | ewarn "echo \"$NVIDIA_MASK\" >> /etc/portage/package.mask" |
120 | ewarn "echo \"$NVIDIA_MASK\" >> /etc/portage/package.mask" |
|
|
121 | fi |
|
|
122 | ewarn |
|
|
123 | ewarn "Failure to perform the steps above could result in a non-working" |
|
|
124 | ewarn "X setup." |
|
|
125 | ewarn |
|
|
126 | ewarn "For more information please read:" |
|
|
127 | ewarn "http://www.nvidia.com/object/IO_32667.html" |
|
|
128 | ebeep 5 |
| 73 | fi |
129 | fi |
| 74 | ewarn |
|
|
| 75 | ewarn "Failure to perform the steps above could result in a non-working" |
|
|
| 76 | ewarn "X setup." |
|
|
| 77 | ebeep 5 |
|
|
| 78 | fi |
130 | fi |
| 79 | } |
131 | } |
| 80 | |
|
|
| 81 | |
|
|