Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 263191 Details for
Bug 389891
S3 resuming failed on AMD SB600/SB700+RS690/RS780 platform
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
adding the "/usr/sbin/vbetool post" to resume_video function
functions-ati (text/plain), 1.36 KB, created by
henry su
on 2007-11-19 02:37:40 UTC
(
hide
)
Description:
adding the "/usr/sbin/vbetool post" to resume_video function
Filename:
MIME Type:
Creator:
henry su
Created:
2007-11-19 02:37:40 UTC
Size:
1.36 KB
patch
obsolete
>#!/bin/bash > >get_lcd_status() >{ > if [ ! -x /usr/sbin/radeontool ]; then > echo "error" > return 2 > fi > STATUS=$(/usr/sbin/radeontool light | cut -d\ -f5 2>/dev/null) > RETVAL=0 > case "x$STATUS" in > "xon") > echo "on" > RETVAL=0 > ;; > "xoff") > echo "off" > RETVAL=1 > ;; > *) > echo "error" > RETVAL=2 > ;; > esac > return $RETVAL >} > >lcd_off() >{ > if [ "$(get_lcd_status)" != "on" ]; then > return > fi > [ -x /usr/sbin/radeontool] && /usr/sbin/radeontool light off >} > >lcd_on() >{ > if [ "$(get_lcd_status)" != "off" ]; then > return > fi > [ -x /usr/sbin/radeontool ] && /usr/sbin/radeontool light on >} > >get_crt_status() >{ > if [ ! -x /usr/sbin/radeontool ]; then > echo "error" > return 2 > fi > STATUS=$(/usr/sbin/radeontool light | cut -d\ -f5 2>/dev/null) > RETVAL=0 > case "x$STATUS" in > "xon") > echo "on" > RETVAL=0 > ;; > "xoff") > echo "off" > RETVAL=1 > ;; > *) > echo "error" > RETVAL=2 > ;; > esac > return $RETVAL >} > >crt_off() >{ > if [ "$(get_lcd_status)" != "on" ]; then > return > fi > [ -x /usr/sbin/radeontool ] && /usr/sbin/radeontool dac off >} > >crt_on() >{ > if [ "$(get_lcd_status)" != "on" ]; then > return > fi > [ -x /usr/sbin/radeontool ] && /usr/sbin/radeontool dac on >} > >[ -x /usr/sbin/vbetool ] || return > >suspend_video() >{ > /usr/sbin/vbetool dpms suspend >/dev/null 2>&1 >} > >resume_video() >{ >/usr/sbin/vbetool post ># /usr/sbin/vbetool dpms on >/dev/null 2>&1 > : >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 389891
:
263181
| 263191