chithanh 14/05/04 12:38:30
Modified: ChangeLog
Added: radeon-ucode-20140430.ebuild
Removed: radeon-ucode-20131111.ebuild
radeon-ucode-20130826.ebuild
Log:
Add more ucode for recent hardware and bug fixes, bug #508670.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path
1.39 x11-drivers/radeon-ucode/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/radeon-ucode/ChangeLog?rev=1.39&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/radeon-ucode/ChangeLog?rev=1.39&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/radeon-ucode/ChangeLog?r1=1.38&r2=1.39
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/radeon-ucode/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog 6 Apr 2014 10:11:10 -0000 1.38
+++ ChangeLog 4 May 2014 12:38:30 -0000 1.39
@@ -1,6 +1,13 @@
# ChangeLog for x11-drivers/radeon-ucode
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/radeon-ucode/ChangeLog,v 1.38
2014/04/06 10:11:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/radeon-ucode/ChangeLog,v 1.39
2014/05/04 12:38:30 chithanh Exp $
+
+*radeon-ucode-20140430 (04 May 2014)
+
+ 04 May 2014; Chí-Thanh Christopher Nguyễn <[email protected]>
+ +radeon-ucode-20140430.ebuild, -radeon-ucode-20130826.ebuild,
+ -radeon-ucode-20131111.ebuild:
+ Add more ucode for recent hardware and bug fixes, bug #508670.
06 Apr 2014; Agostino Sarubbo <[email protected]> radeon-ucode-20140204.ebuild:
Stable for x86, wrt bug #500368
1.1 x11-drivers/radeon-ucode/radeon-ucode-20140430.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/radeon-ucode/radeon-ucode-20140430.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/radeon-ucode/radeon-ucode-20140430.ebuild?rev=1.1&content-type=text/plain
Index: radeon-ucode-20140430.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/x11-drivers/radeon-ucode/radeon-ucode-20140430.ebuild,v
1.1 2014/05/04 12:38:30 chithanh Exp $
EAPI=5
inherit linux-info
DESCRIPTION="IRQ microcode for r6xx/r7xx/Evergreen/N.Islands/S.Islands Radeon
GPUs and APUs"
HOMEPAGE="http://people.freedesktop.org/~agd5f/radeon_ucode/"
SRC_URI="mirror://gentoo/${P}.tar.xz"
LICENSE="radeon-ucode"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="!sys-kernel/linux-firmware[-savedconfig]"
S=${WORKDIR}/${PN/-/_}
src_install() {
insinto /lib/firmware/radeon
FILES=( *.bin )
doins ${FILES[@]} || 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=\"${FILES[@]/#/radeon/}\""
ewarn "You may skip microcode files for which no
hardware is installed."
ewarn "More information at
http://wiki.gentoo.org/wiki/Radeon#Firmware"
fi
fi
}