blob: fbf43e0f4f6b902bc0bef27a99fde802f0eb9d4e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-ctl/microcode-ctl-1.07-r1.ebuild,v 1.2 2004/06/24 22:16:01 agriffis Exp $
MY_P=${PN/-/_}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Intel IA32 microcode update utility"
HOMEPAGE="http://www.urbanmyth.org/microcode"
SRC_URI="http://www.urbanmyth.org/microcode/${MY_P}.tar.gz
mirror://gentoo/${P}-gentoo.tar.bz2"
IUSE=""
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~amd64 -ppc -sparc -hppa -mips -alpha"
DEPEND="virtual/linux-sources"
src_compile() {
make all || die "compile problem"
}
src_install() {
into /usr/
dosbin microcode_ctl
doman microcode_ctl.8
dodoc Changelog README
insinto /etc/
doins ${WORKDIR}/${PV}/microcode.dat
exeinto /etc/init.d/
doexe ${WORKDIR}/${PV}/microcode_ctl
}
pkg_postinst() {
einfo "Your kernel must include devfs or udev and microcode update support."
echo
einfo "To update the microcode now, run"
einfo ""
einfo "\tmicrocode_ctl -u"
einfo ""
einfo "The update will not survive a reboot. To have it do that run"
einfo ""
einfo "\trc-update add microcode_ctl default"
einfo ""
einfo "NOTE: For 2.6.x series kernels, use the '-d' flag to specify a"
einfo " different microcode device: /dev/microcode"
}
|