<br><br><div><span class="gmail_quote">On 3/3/06, <b class="gmail_sendername">Phil Knirsch</b> <<a href="mailto:pknirsch@redhat.com">pknirsch@redhat.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
D Canfield wrote:<br>> Don Springall wrote:<br>><br>>><br>>> Is suspend/resume broken in rawhide for Kernel 2.6.16-rc5-git4 ? It<br>>> last worked for me in 2.6.16-rc5. Not seeing anything breaking in dmesg.
<br>>><br>>> I get I/O and then the screen flickers but stays blank. At that point<br>>> I have to pull the plug on power. ACPI messages look ok.<br>><br>> I haven't had time to do a lot of testing, but suspend stopped working
<br>> on my Thinkpad T43 (ATI Chipset, DRI turned off since this is the only<br>> way suspend has ever worked for me) sometime in the past week or two as<br>> well.  And mere weeks after it had finally started working... :-(
<br>><br>> DC<br>><br><br>I've done a few changes to the ATI scripts over the last few weeks<br>because we had at least one report where the old script failed. It looks<br>like this causes much more problems though than it solves, so i'm
<br>reverting the changes back to what we had previously.<br><br>Attached is the original functions-ati from /etc/pm/functions-ati which<br>i'm putting back in as we speak.<br><br>Please give it a try with that one and let me know if it works. If it
<br>doesn't then it's most likely a kernel bug that got introduced over the<br>last few weeks.<br><br>Read ya, Phil<br><br>--<br>Philipp Knirsch      | Tel.:  +49-711-96437-470<br>Development          | Fax.:  +49-711-96437-111
<br>Red Hat GmbH         | Email: Phil Knirsch <<a href="mailto:phil@redhat.de">phil@redhat.de</a>><br>Hauptstaetterstr. 58 | Web:   <a href="http://www.redhat.de/">http://www.redhat.de/</a><br>D-70178 Stuttgart<br>
       Kaa's Law: In any sufficiently large group of people most are idiots.<br><br><br>#!/bin/bash<br><br><br>get_lcd_status()<br>{<br>        if [ ! -x /usr/sbin/radeontool ]; then<br>                echo "error"
<br>                return 2<br>        fi<br>        STATUS=$(/usr/sbin/radeontool light | cut -d\  -f5 2>/dev/null)<br>        RETVAL=0<br>        case "x$STATUS" in<br>                "xon")<br>                        echo "on"
<br>                        RETVAL=0<br>                        ;;<br>                "xoff")<br>                        echo "off"<br>                        RETVAL=1<br>                        ;;<br>
                *)<br>                        echo "error"<br>                        RETVAL=2<br>                        ;;<br>        esac<br>        return $RETVAL<br>}<br><br>lcd_off()<br>{<br>        if [ "$(get_lcd_status)" != "on" ]; then
<br>                return<br>        fi<br>        [ -x /usr/sbin/radeontool] && /usr/sbin/radeontool light off<br>}<br><br>lcd_on()<br>{<br>        if [ "$(get_lcd_status)" != "off" ]; then<br>
                return<br>        fi<br>        [ -x /usr/sbin/radeontool ] && /usr/sbin/radeontool light on<br>}<br><br>get_crt_status()<br>{<br>        if [ ! -x /usr/sbin/radeontool ]; then<br>                echo "error"
<br>                return 2<br>        fi<br>        STATUS=$(/usr/sbin/radeontool light | cut -d\  -f5 2>/dev/null)<br>        RETVAL=0<br>        case "x$STATUS" in<br>                "xon")<br>                        echo "on"
<br>                        RETVAL=0<br>                        ;;<br>                "xoff")<br>                        echo "off"<br>                        RETVAL=1<br>                        ;;<br>
                *)<br>                        echo "error"<br>                        RETVAL=2<br>                        ;;<br>        esac<br>        return $RETVAL<br>}<br><br>crt_off()<br>{<br>        if [ "$(get_lcd_status)" != "on" ]; then
<br>                return<br>        fi<br>        [ -x /usr/sbin/radeontool ] && /usr/sbin/radeontool dac off<br>}<br><br>crt_on()<br>{<br>        if [ "$(get_lcd_status)" != "on" ]; then<br>
                return<br>        fi<br>        [ -x /usr/sbin/radeontool ] && /usr/sbin/radeontool dac on<br>}<br><br>[ -x /usr/sbin/vbetool ] || return<br><br>suspend_video()<br>{<br>(<br>        /usr/sbin/vbetool dpms suspend
<br>) >/dev/null 2>&1<br>}<br><br>resume_video()<br>{<br>(<br>        /usr/sbin/vbetool dpms on<br>) >/dev/null 2>&1<br>}<br><br><br>--<br>fedora-test-list mailing list<br><a href="mailto:fedora-test-list@redhat.com">
fedora-test-list@redhat.com</a><br>To unsubscribe:<br><a href="https://www.redhat.com/mailman/listinfo/fedora-test-list">https://www.redhat.com/mailman/listinfo/fedora-test-list</a><br><br></blockquote></div>About 3 days ago, my laptop (Dell Latitude D600) stopped coming back from suspend, the hd light flickered but the screen wouldn't come back.
<br><br>I replaced with this, and I got my screen back, howerver my network didn't reconnect and had to run<br>dhclient eth0<br><br>I am at work at the moment and it is on a docking station if that matters./?<br><br>lspci -v | grep VGA
<br><br>01:00.0 VGA compatible controller: ATI Technologies Inc Radeon R250 Lf [FireGL 9000] (rev 02) (prog-if 00 [VGA])<br><br><br># lspci -v | egrep -i 'network|ethernet'<br>02:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5705M Gigabit Ethernet (rev 01)
<br>02:03.0 Network controller: Intel Corporation PRO/Wireless 2200BG (rev 05)<br><br><br><br>