| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2007 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.10 2007/12/21 20:38:44 cardoe Exp $ |
| 4 | |
4 | |
| 5 | # |
5 | # |
| 6 | # Original Author: Doug Goldstein <cardoe@gentoo.org> |
6 | # Original Author: Doug Goldstein <cardoe@gentoo.org> |
| 7 | # Purpose: Provide useful messages for nvidia-drivers based on currently |
7 | # Purpose: Provide useful messages for nvidia-drivers based on currently |
| 8 | # installed Nvidia card |
8 | # installed Nvidia card |
| 9 | # |
9 | # |
|
|
10 | inherit versionator |
| 10 | |
11 | |
| 11 | DEPEND="sys-apps/pciutils" |
12 | DEPEND="sys-apps/pciutils" |
|
|
13 | |
|
|
14 | # the data below is derived from |
|
|
15 | # http://us.download.nvidia.com/XFree86/Linux-x86_64/100.14.11/README/appendix-a.html |
| 12 | |
16 | |
| 13 | drv_96xx="0110 0111 0112 0113 0170 0171 0172 0173 0174 0175 0176 0177 0178 \ |
17 | 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 \ |
18 | 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 \ |
19 | 0201 0202 0203 0250 0251 0253 0258 0259 025b 0280 0281 0282 0286 0288 0289 \ |
| 16 | 028c" |
20 | 028c" |
| 17 | |
21 | |
| 18 | drv_71xx="0020 0028 0029 002c 002d 00a0 0100 0101 0103 0150 0151 0152 0153" |
22 | drv_71xx="0020 0028 0029 002c 002d 00a0 0100 0101 0103 0150 0151 0152 0153" |
| 19 | |
23 | |
| 20 | mask_96xx=">=x11-drivers/nvidia-drivers-1.0.9700" |
24 | mask_96xx=">=x11-drivers/nvidia-drivers-97.0.0" |
| 21 | mask_71xx=">=x11-drivers/nvidia-drivers-1.0.7200" |
25 | mask_71xx=">=x11-drivers/nvidia-drivers-72.0.0" |
| 22 | |
26 | |
| 23 | # Retrieve the PCI device ID for each Nvidia video card you have |
27 | # Retrieve the PCI device ID for each Nvidia video card you have |
| 24 | nvidia-driver-get-card() { |
28 | nvidia-driver-get-card() { |
| 25 | local NVIDIA_CARD="$(/usr/sbin/lspci -d 10de: -n | \ |
29 | local NVIDIA_CARD="$(/usr/sbin/lspci -d 10de: -n | \ |
| 26 | awk '/ 0300: /{print $3}' | cut -d: -f2 | tr '\n' ' ')" |
30 | awk '/ 0300: /{print $3}' | cut -d: -f2 | tr '\n' ' ')" |
| … | |
… | |
| 56 | } |
60 | } |
| 57 | |
61 | |
| 58 | nvidia-driver-check-warning() { |
62 | nvidia-driver-check-warning() { |
| 59 | local NVIDIA_MASK="$(nvidia-driver-get-mask)" |
63 | local NVIDIA_MASK="$(nvidia-driver-get-mask)" |
| 60 | if [ -n "$NVIDIA_MASK" ]; then |
64 | if [ -n "$NVIDIA_MASK" ]; then |
|
|
65 | version_compare "${NVIDIA_MASK##*-}" "${PV}" |
|
|
66 | r=$? |
|
|
67 | |
|
|
68 | if [ "x$r" = "x1" ]; then |
| 61 | ewarn "***** WARNING *****" |
69 | ewarn "***** WARNING *****" |
| 62 | ewarn |
70 | ewarn |
| 63 | ewarn "You are currently installing a version of nvidia-drivers that is" |
71 | 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" |
72 | 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" |
73 | ewarn "system. If this is intentional, please ignore this. If it is not" |
| 66 | ewarn "please perform the following steps:" |
74 | ewarn "please perform the following steps:" |
| 67 | ewarn |
75 | ewarn |
| 68 | ewarn "Add the following mask entry to /etc/portage/package.mask by" |
76 | ewarn "Add the following mask entry to /etc/portage/package.mask by" |
| 69 | if [ -d "${ROOT}/etc/portage/package.mask" ]; then |
77 | if [ -d "${ROOT}/etc/portage/package.mask" ]; then |
| 70 | ewarn "echo \"$NVIDIA_MASK\" > /etc/portage/package.mask/nvidia-drivers" |
78 | ewarn "echo \"$NVIDIA_MASK\" > /etc/portage/package.mask/nvidia-drivers" |
| 71 | else |
79 | else |
| 72 | ewarn "echo \"$NVIDIA_MASK\" >> /etc/portage/package.mask" |
80 | ewarn "echo \"$NVIDIA_MASK\" >> /etc/portage/package.mask" |
|
|
81 | fi |
|
|
82 | ewarn |
|
|
83 | ewarn "Failure to perform the steps above could result in a non-working" |
|
|
84 | ewarn "X setup." |
|
|
85 | ewarn |
|
|
86 | ewarn "For more information please read:" |
|
|
87 | ewarn "http://www.nvidia.com/object/IO_32667.html" |
|
|
88 | ebeep 5 |
| 73 | fi |
89 | 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 |
90 | fi |
| 79 | } |
91 | } |
| 80 | |
92 | |
| 81 | |
93 | |