Package: pm-utils
Version: 1.1.0-1
Severity: wishlist
Tags: patch
Hi,
For some systems using intel 800/900 integrated video chipsets it is
needed to run 915resolution program for resume to work properly, as it
is also needed to be run on boot to get a patched mode on Video BIOS
that supports full resolution.
I send a tiny script that could be used to do it, similar to what
hibernate does. It is the one I use, but perhaps you should check for
915resolution program before trying to use it.
Please, include it. Will make people with such hardware happy.
Thanks
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages pm-utils depends on:
ii console-tools 1:0.2.3dbs-65.1 Linux console and font utilities
ii powermgmt-base 1.30 Common utils and configs for power
Versions of packages pm-utils recommends:
ii hal 0.5.11-1 Hardware Abstraction Layer
ii radeontool 1.5-5 utility to control ATI Radeon back
ii uswsusp 0.7-1.1 tools to use userspace software su
ii vbetool 1.0-1.1 run real-mode video BIOS code to a
-- no debconf information
#/bin/sh
. "${PM_FUNCTIONS}"
case "$1" in
hibernate|suspend)
;;
thaw|resume)
/etc/init.d/915resolution restart
;;
*) exit $NA
;;
esac