diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-13 18:54:52 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-13 18:54:52 +0000 |
commit | ad77c1598612f43a7ba255f98c1e1b35b83bab62 (patch) | |
tree | 53ce255c66ff3db57eb4848138ded0de4962329a /x11-drivers | |
parent | old (diff) | |
download | gentoo-2-ad77c1598612f43a7ba255f98c1e1b35b83bab62.tar.gz gentoo-2-ad77c1598612f43a7ba255f98c1e1b35b83bab62.tar.bz2 gentoo-2-ad77c1598612f43a7ba255f98c1e1b35b83bab62.zip |
old
(Portage version: 2.2.0_alpha23/cvs/Linux x86_64)
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/radeon-ucode/ChangeLog | 6 | ||||
-rw-r--r-- | x11-drivers/radeon-ucode/radeon-ucode-20101122.ebuild | 57 |
2 files changed, 5 insertions, 58 deletions
diff --git a/x11-drivers/radeon-ucode/ChangeLog b/x11-drivers/radeon-ucode/ChangeLog index 4fff05588dd0..a7c0854082c2 100644 --- a/x11-drivers/radeon-ucode/ChangeLog +++ b/x11-drivers/radeon-ucode/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-drivers/radeon-ucode # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/radeon-ucode/ChangeLog,v 1.12 2011/02/12 16:04:04 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/radeon-ucode/ChangeLog,v 1.13 2011/02/13 18:54:51 scarabeus Exp $ + + 13 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> + -radeon-ucode-20101122.ebuild: + old 12 Feb 2011; Christian Faulhammer <fauli@gentoo.org> radeon-ucode-20110106.ebuild: diff --git a/x11-drivers/radeon-ucode/radeon-ucode-20101122.ebuild b/x11-drivers/radeon-ucode/radeon-ucode-20101122.ebuild deleted file mode 100644 index 318c765309a0..000000000000 --- a/x11-drivers/radeon-ucode/radeon-ucode-20101122.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/radeon-ucode/radeon-ucode-20101122.ebuild,v 1.3 2010/12/25 20:15:02 fauli Exp $ - -inherit linux-info - -UCODE_BASE_URI="http://people.freedesktop.org/~agd5f/${PN/-/_}" -UCODE_FILES=( - "CEDAR_me.bin" - "CEDAR_pfp.bin" - "CEDAR_rlc.bin" - "CYPRESS_me.bin" - "CYPRESS_pfp.bin" - "CYPRESS_rlc.bin" - "JUNIPER_me.bin" - "JUNIPER_pfp.bin" - "JUNIPER_rlc.bin" - "R600_rlc.bin" - "R700_rlc.bin" - "PALM_me.bin" - "PALM_pfp.bin" - "REDWOOD_me.bin" - "REDWOOD_pfp.bin" - "REDWOOD_rlc.bin" - "SUMO_rlc.bin" -) - -DESCRIPTION="IRQ microcode for r6xx/r7xx/Evergreen Radeon GPUs" -HOMEPAGE="http://people.freedesktop.org/~agd5f/radeon_ucode/" -SRC_URI="${UCODE_FILES[@]/#/${UCODE_BASE_URI}/}" - -LICENSE="radeon-ucode" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -src_unpack() { :; } - -src_install() { - insinto /lib/firmware/radeon || die "insinto failed" - doins "${UCODE_FILES[@]/#/${DISTDIR}/}" || die "doins failed" -} - -pkg_postinst() { - if linux_config_exists && linux_chkconfig_builtin DRM_RADEON; then - if ! linux_chkconfig_present FIRMWARE_IN_KERNEL || \ - ! [[ "$(linux_chkconfig_string EXTRA_FIRMWARE)" == *_rlc.bin* ]]; then - ewarn "Your kernel has radeon DRM built-in but not the IRQ microcode." - ewarn "For kernel modesetting to work, please set in kernel config" - ewarn "CONFIG_FIRMWARE_IN_KERNEL=y" - ewarn "CONFIG_EXTRA_FIRMWARE_DIR=\"/lib/firmware\"" - ewarn "CONFIG_EXTRA_FIRMWARE=\"${UCODE_FILES[@]/#/radeon/}\"" - ewarn "You may skip microcode files for which no hardware is installed." - ewarn "More information at http://wiki.x.org/wiki/radeonBuildHowTo" - fi - fi -} |