diff options
author | Jeffrey Gardner <je_fro@gentoo.org> | 2009-04-13 03:42:49 +0000 |
---|---|---|
committer | Jeffrey Gardner <je_fro@gentoo.org> | 2009-04-13 03:42:49 +0000 |
commit | 9926470093c61b56535a9f31ef51342c7da6777f (patch) | |
tree | 69fe922c06b92f1d8d4757b61a7892df6e74855d | |
parent | QA: respect CC, bug 243614 (diff) | |
download | gentoo-2-9926470093c61b56535a9f31ef51342c7da6777f.tar.gz gentoo-2-9926470093c61b56535a9f31ef51342c7da6777f.tar.bz2 gentoo-2-9926470093c61b56535a9f31ef51342c7da6777f.zip |
More cleanup
(Portage version: 2.1.6.11/cvs/Linux x86_64)
-rw-r--r-- | x11-drivers/ati-drivers/ChangeLog | 6 | ||||
-rw-r--r-- | x11-drivers/ati-drivers/files/8.476/ati-powermode-opt-path-2.patch | 42 |
2 files changed, 5 insertions, 43 deletions
diff --git a/x11-drivers/ati-drivers/ChangeLog b/x11-drivers/ati-drivers/ChangeLog index ca54ab39cc1f..e2c35abfcf82 100644 --- a/x11-drivers/ati-drivers/ChangeLog +++ b/x11-drivers/ati-drivers/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-drivers/ati-drivers # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.149 2009/04/13 02:21:46 je_fro Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/ati-drivers/ChangeLog,v 1.150 2009/04/13 03:42:48 je_fro Exp $ + + 13 Apr 2009; Jeff Gardner <je_fro@gentoo.org> + -files/8.476/ati-powermode-opt-path-2.patch: + More cleanup 13 Apr 2009; Jeff Gardner <je_fro@gentoo.org> -files/8.542/ati-drivers-2.6.27.patch, diff --git a/x11-drivers/ati-drivers/files/8.476/ati-powermode-opt-path-2.patch b/x11-drivers/ati-drivers/files/8.476/ati-powermode-opt-path-2.patch deleted file mode 100644 index f5a35a304ec4..000000000000 --- a/x11-drivers/ati-drivers/files/8.476/ati-powermode-opt-path-2.patch +++ /dev/null @@ -1,42 +0,0 @@ -diff -ur common.orig/usr/share/doc/fglrx/examples/etc/acpi/ati-powermode.sh common/usr/share/doc/fglrx/examples/etc/acpi/ati-powermode.sh ---- common.orig/usr/share/doc/fglrx/examples/etc/acpi/ati-powermode.sh 2006-07-28 04:22:36.000000000 +0100 -+++ common/usr/share/doc/fglrx/examples/etc/acpi/ati-powermode.sh 2006-08-04 12:19:42.000000000 +0100 -@@ -4,6 +4,8 @@ - # Control script for ACPI lid state and AC adapter state - # - -+aticonfig='/opt/bin/aticonfig' -+ - getXuser() { - user=`finger| grep -m1 ":$displaynum " | awk '{print $1}'` - if [ x"$user" = x"" ]; then -@@ -47,7 +49,7 @@ - done - - #If PPLIB is enabled --su $user -c '/usr/bin/aticonfig --pplib-cmd="get version"' | grep PPLIB -+su $user -c '$aticonfig --pplib-cmd="get version"' | grep PPLIB - if [ $? = 0 ]; then - echo "Has PPLIB" - has_pplib=1 -@@ -61,15 +63,15 @@ - if [ ${lid_closed} -eq 1 -o ${on_dc} -eq 1 ]; then - echo "Low power" - if [ ${has_pplib} -eq 1 ]; then -- su $user -c '/usr/bin/aticonfig --pplib-cmd="notify psrc dc"' -+ su $user -c '$aticonfig --pplib-cmd="notify psrc dc"' - else -- su $user -c "/usr/bin/aticonfig --set-powerstate=1 --effective=now" -+ su $user -c "$aticonfig --set-powerstate=1" - fi - else - echo "high power" - if [ ${has_pplib} -eq 1 ]; then -- su $user -c '/usr/bin/aticonfig --pplib-cmd="notify psrc ac"' -+ su $user -c '$aticonfig --pplib-cmd="notify psrc ac"' - else -- su $user -c "/usr/bin/aticonfig --set-powerstate=3 --effective=now" -+ su $user -c "$aticonfig --set-powerstate=$($aticonfig --lsp | grep 'default state' | cut -c 3)" - fi - fi - |