diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-12-06 08:21:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-12-06 08:21:13 +0000 |
commit | 36ea0451c73e6d1db6e198206bc2fea172faa6ec (patch) | |
tree | 02610a3da5834784b427264e843ba0833e2356d9 /sys-apps/microcode-data | |
parent | Improve HFSC documentation and usage #291907 by Arthur Demchenkov. (diff) | |
download | gentoo-2-36ea0451c73e6d1db6e198206bc2fea172faa6ec.tar.gz gentoo-2-36ea0451c73e6d1db6e198206bc2fea172faa6ec.tar.bz2 gentoo-2-36ea0451c73e6d1db6e198206bc2fea172faa6ec.zip |
Version bump #290370 by Jochen.
(Portage version: 2.2_rc55/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-20090927.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/sys-apps/microcode-data/ChangeLog b/sys-apps/microcode-data/ChangeLog index 50f74786ccd6..ddba6c709124 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-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.4 2009/06/10 20:22:43 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.5 2009/12/06 08:21:13 vapier Exp $ + +*microcode-data-20090927 (06 Dec 2009) + + 06 Dec 2009; Mike Frysinger <vapier@gentoo.org> + +microcode-data-20090927.ebuild: + Version bump #290370 by Jochen. 10 Jun 2009; Markus Meier <maekke@gentoo.org> microcode-data-20090330.ebuild: diff --git a/sys-apps/microcode-data/microcode-data-20090927.ebuild b/sys-apps/microcode-data/microcode-data-20090927.ebuild new file mode 100644 index 000000000000..62e485e81005 --- /dev/null +++ b/sys-apps/microcode-data/microcode-data-20090927.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20090927.ebuild,v 1.1 2009/12/06 08:21:13 vapier Exp $ + +NUM="18148" +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="" + +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" +} |