blob: 4b3bcb6b786b2ac8cefe66b9f1ed931f50061137 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20111110.ebuild,v 1.1 2011/12/12 22:39:57 flameeyes Exp $
EAPI=4
inherit toolchain-funcs
NUM="20728"
DESCRIPTION="Intel IA32 microcode update data"
HOMEPAGE="http://urbanmyth.org/microcode/"
SRC_URI="http://downloadmirror.intel.com/${NUM}/eng/microcode-${PV}.tgz"
LICENSE="intel-ucode"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="!<sys-apps/microcode-ctl-1.17-r2" #268586
S=${WORKDIR}
src_unpack() {
unpack ${A}
cp "${FILESDIR}"/intel-microcode2ucode.c ./ || die
}
src_compile() {
tc-env_build emake intel-microcode2ucode
./intel-microcode2ucode microcode.dat || die
}
src_install() {
insinto /lib/firmware
doins -r microcode.dat intel-ucode
}
pkg_postinst() {
elog "The microcode available for Intel CPUs has been updated. You'll need"
elog "to reload the code into your processor. If you're using the init.d:"
elog "/etc/init.d/microcode_ctl restart"
}
|