diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-02-13 10:27:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-02-13 10:27:55 +0000 |
commit | bb22c36634a156889017ecf639971850e54cc438 (patch) | |
tree | 6613eeb3f6777e0168b3b5860693a2e8bdccf460 /sys-apps/microcode-data | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-bb22c36634a156889017ecf639971850e54cc438.tar.gz gentoo-2-bb22c36634a156889017ecf639971850e54cc438.tar.bz2 gentoo-2-bb22c36634a156889017ecf639971850e54cc438.zip |
Version bump #304757 by Matthew Turnbull. Block older microcode-ctl versions #268586 by Vasileios P. Lourdas.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/microcode-data')
-rw-r--r-- | sys-apps/microcode-data/ChangeLog | 11 | ||||
-rw-r--r-- | sys-apps/microcode-data/microcode-data-20100209.ebuild | 28 |
2 files changed, 37 insertions, 2 deletions
diff --git a/sys-apps/microcode-data/ChangeLog b/sys-apps/microcode-data/ChangeLog index ddba6c709124..903507f7ac3f 100644 --- a/sys-apps/microcode-data/ChangeLog +++ b/sys-apps/microcode-data/ChangeLog @@ -1,6 +1,13 @@ # 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.5 2009/12/06 08:21:13 vapier Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.6 2010/02/13 10:27:55 vapier Exp $ + +*microcode-data-20100209 (13 Feb 2010) + + 13 Feb 2010; Mike Frysinger <vapier@gentoo.org> + +microcode-data-20100209.ebuild: + Version bump #304757 by Matthew Turnbull. Block older microcode-ctl + versions #268586 by Vasileios P. Lourdas. *microcode-data-20090927 (06 Dec 2009) diff --git a/sys-apps/microcode-data/microcode-data-20100209.ebuild b/sys-apps/microcode-data/microcode-data-20100209.ebuild new file mode 100644 index 000000000000..9ccc3b78dadc --- /dev/null +++ b/sys-apps/microcode-data/microcode-data-20100209.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-20100209.ebuild,v 1.1 2010/02/13 10:27:55 vapier Exp $ + +NUM="18683" +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" +} |