diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-09-19 19:19:46 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-09-19 19:19:46 +0000 |
commit | 4bfec725cb385ab0fd872a902688a3aec7d1d05d (patch) | |
tree | 979594bfa6d9fed6d73aff3febe5f1ee92eb3887 /sys-apps/microcode-data | |
parent | Stabilize for amd64/x86. (diff) | |
download | gentoo-2-4bfec725cb385ab0fd872a902688a3aec7d1d05d.tar.gz gentoo-2-4bfec725cb385ab0fd872a902688a3aec7d1d05d.tar.bz2 gentoo-2-4bfec725cb385ab0fd872a902688a3aec7d1d05d.zip |
Version bump #337983.
(Portage version: 2.2_rc83/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/microcode-data')
-rw-r--r-- | sys-apps/microcode-data/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/microcode-data/microcode-data-20100826.ebuild | 28 |
2 files changed, 35 insertions, 1 deletions
diff --git a/sys-apps/microcode-data/ChangeLog b/sys-apps/microcode-data/ChangeLog index a91d6fdeff35..2f1c329946f2 100644 --- a/sys-apps/microcode-data/ChangeLog +++ b/sys-apps/microcode-data/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-apps/microcode-data # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.7 2010/09/19 19:19:05 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.8 2010/09/19 19:19:46 vapier Exp $ + +*microcode-data-20100826 (19 Sep 2010) + + 19 Sep 2010; Mike Frysinger <vapier@gentoo.org> + +microcode-data-20100826.ebuild: + Version bump #337983. 19 Sep 2010; Mike Frysinger <vapier@gentoo.org> microcode-data-20100209.ebuild: diff --git a/sys-apps/microcode-data/microcode-data-20100826.ebuild b/sys-apps/microcode-data/microcode-data-20100826.ebuild new file mode 100644 index 000000000000..0662a3884199 --- /dev/null +++ b/sys-apps/microcode-data/microcode-data-20100826.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20100826.ebuild,v 1.1 2010/09/19 19:19:46 vapier Exp $ + +NUM="19299" +DESCRIPTION="Intel IA32 microcode update data" +HOMEPAGE="http://urbanmyth.org/microcode/" +SRC_URI="http://downloadmirror.intel.com/${NUM}/eng/microcode-${PV}.tgz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="!<sys-apps/microcode-ctl-1.17-r2" #268586 + +S=${WORKDIR} + +src_install() { + insinto /lib/firmware + newins microcode-${PV}.dat microcode.dat || die +} + +pkg_postinst() { + einfo "The microcode available for Intel CPUs has been updated. You'll need" + einfo "to reload the code into your processor. If you're using the init.d:" + einfo "/etc/init.d/microcode_ctl restart" +} |