diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-09-17 09:55:43 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-09-17 09:55:43 +0000 |
commit | 791386ab469bef72e4eca9800cec1a62bb11ba31 (patch) | |
tree | 34fcf0acf754573a69cc92d300eec770be80d9c7 /sys-apps/microcode-data | |
parent | Version bump #237173 by Conrad Kostecki. (diff) | |
download | historical-791386ab469bef72e4eca9800cec1a62bb11ba31.tar.gz historical-791386ab469bef72e4eca9800cec1a62bb11ba31.tar.bz2 historical-791386ab469bef72e4eca9800cec1a62bb11ba31.zip |
Version bump by Philipp Psurek #237884.
Package-Manager: portage-2.2_rc8/cvs/Linux 2.6.26.2 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-20080910.ebuild | 23 |
2 files changed, 30 insertions, 1 deletions
diff --git a/sys-apps/microcode-data/ChangeLog b/sys-apps/microcode-data/ChangeLog index 383577125765..e585a3093470 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-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.1 2008/05/05 04:04:15 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/ChangeLog,v 1.2 2008/09/17 09:55:43 vapier Exp $ + +*microcode-data-20080910 (17 Sep 2008) + + 17 Sep 2008; Mike Frysinger <vapier@gentoo.org> + +microcode-data-20080910.ebuild: + Version bump by Philipp Psurek #237884. *microcode-data-20080401 (05 May 2008) diff --git a/sys-apps/microcode-data/microcode-data-20080910.ebuild b/sys-apps/microcode-data/microcode-data-20080910.ebuild new file mode 100644 index 000000000000..c40e0e383781 --- /dev/null +++ b/sys-apps/microcode-data/microcode-data-20080910.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/microcode-data/microcode-data-20080910.ebuild,v 1.1 2008/09/17 09:55:43 vapier Exp $ + +DESCRIPTION="Intel IA32 microcode update data" +HOMEPAGE="http://urbanmyth.org/microcode/" +SRC_URI="http://downloadmirror.intel.com/14303/eng/microcode-${PV}.tgz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_install() { + insinto /etc + newins "${WORKDIR}"/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" +} |