blob: 2d9adba9b5ffc097e394b21bdc01b967b15da79e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/nvidia-kernel/nvidia-kernel-1.0.4191-r1.ebuild,v 1.7 2003/02/17 23:19:03 azarah Exp $
inherit eutils
# Make sure Portage does _NOT_ strip symbols. Need both lines for
# Portage 1.8.9+
DEBUG="yes"
RESTRICT="nostrip"
NV_V="${PV/1.0./1.0-}"
NV_PACKAGE="NVIDIA_kernel-${NV_V}"
S="${WORKDIR}/${NV_PACKAGE}"
DESCRIPTION="Linux kernel module for the NVIDIA's X driver"
SRC_URI="http://download.nvidia.com/XFree86_40/${NV_V}/${NV_PACKAGE}.tar.gz"
HOMEPAGE="http://www.nvidia.com/"
# The slow needs to be set to $KV to prevent unmerges of
# modules for other kernels.
LICENSE="NVIDIA"
SLOT="${KV}"
KEYWORDS="~x86 -ppc -sparc -alpha"
DEPEND="virtual/linux-sources
>=sys-apps/portage-1.9.10"
pkg_setup() {
if [ ! -f /proc/mtrr ]
then
eerror "This version needs MTRR support for most chipsets!"
eerror "Please enable MTRR support in your kernel config, found at:"
eerror
eerror " Processor type and features -> [*] MTRR (Memory Type Range Register) support"
eerror
eerror "and recompile your kernel ..."
die "MTRR support not detected!"
fi
}
src_unpack() {
unpack ${A}
# Next section applies patches for linux-2.5 kernel, or if
# linux-2.4, the page_alloc.c patch courtesy of NVIDIA Corporation.
# All these are from:
#
# http://www.minion.de/nvidia/
#
# Many thanks to Christian Zander <zander@minion.de> for bringing
# these to us, and being so helpful to select which to use.
# This should close bug #9704.
local KV_major="`uname -r | cut -d. -f1`"
local KV_minor="`uname -r | cut -d. -f2`"
local KV_micro="`uname -r | cut -d. -f3 | sed -e 's:[^0-9].*::'`"
cd ${S}
if [ "${KV_major}" -eq 2 -a "${KV_minor}" -eq 5 ]
then
EPATCH_SINGLE_MSG="Applying tasklet patch for kernel 2.5..." \
epatch ${FILESDIR}/${NV_PACKAGE}-2.5-tl.diff
if [ "${KV_micro}" -gt 53 ]
then
EPATCH_SINGLE_MSG="Applying module loader no common sections..." \
epatch ${FILESDIR}/${NV_PACKAGE}-2.5.54.diff
fi
if [ "${KV_micro}" -gt 60 ]
then
EPATCH_SINGLE_MSG="Applying include patch for 2.5.61+..." \
epatch ${FILESDIR}/${NV_PACKAGE}-2.5.61.diff
fi
else
# This is a minor patch to make it work with rmap enabled kernels
EPATCH_SINGLE_MSG="Applying rmap compat patch for kernel 2.4..."
epatch ${FILESDIR}/${NV_PACKAGE}-rmap.diff
fi
}
src_compile() {
# Portage should determine the version of the kernel sources
check_KV
# IGNORE_CC_MISMATCH disables a sanity check that's needed when gcc has been
# updated but the running kernel is still compiled with an older gcc. This is
# needed for chrooted building, where the sanity check detects the gcc of the
# kernel outside the chroot rather than within.
if [ -d /usr/src/linux/include/asm-i386/mach-default -a \
! -d /usr/src/linux/include/asm-i386/mach-generic ]
then
make SYSINCLUDE="/usr/src/linux/include \
-I/usr/src/linux/include/asm-i386/mach-default" \
IGNORE_CC_MISMATCH="yes" KERNDIR="/usr/src/linux" \
clean nvidia.o || die
else
make IGNORE_CC_MISMATCH="yes" KERNDIR="/usr/src/linux" \
clean nvidia.o || die
fi
}
src_install() {
# The driver goes into the standard modules location
insinto /lib/modules/${KV}/video
doins nvidia.o
# Add the aliases
insinto /etc/modules.d
newins ${FILESDIR}/nvidia-1.1 nvidia
# Docs
dodoc ${S}/README
# The device creation script
into /
newsbin ${S}/makedevices.sh NVmakedevices.sh
}
pkg_postinst() {
if [ "${ROOT}" = "/" ]
then
# Update module dependency
[ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules
if [ ! -e /dev/.devfsd ] && [ -x /sbin/NVmakedevices.sh ]
then
/sbin/NVmakedevices.sh >/dev/null 2>&1
fi
fi
echo
einfo "If you are not using devfs, loading the module automatically at"
einfo "boot up, you need to add \"nvidia\" to your /etc/modules.autoload."
echo
ewarn "Please note that the driver name changed from \"NVdriver\""
ewarn "to \"nvidia.o\"."
echo
}
|