Your message dated Mon, 31 Mar 2008 07:47:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#445974: fixed in hibernate 1.98-1
has caused the Debian Bug report #445974,
regarding hibernate: Should support s2ram -r (radeontool) option
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
445974: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=445974
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: hibernate
Version: 1.96~pre-svn.r1136-1
Severity: wishlist
Tags: patch

Hey,

The attached patch adds support for the s2ram -r option to hibernate.

Gr.

Matthijs

-- Package-specific info:

--- configuration
==> /etc/hibernate/common.conf <==
Verbosity 0
LogFile /var/log/hibernate.log
LogVerbosity 1
Distribution debian
SaveClock restore-only
UnmountFSTypes smbfs nfs vfat
UnmountGraceTime 1
OnSuspend 20 wpa_action wlan0 stop || true
UnloadModules rt2500pci
UnloadBlacklistedModules yes
LoadModules psmouse rt2500pci
==> /etc/hibernate/disk.conf <==
TryMethod ususpend-disk.conf
TryMethod sysfs-disk.conf
==> /etc/hibernate/hibernate.conf <==
TryMethod suspend2.conf
TryMethod disk.conf
TryMethod ram.conf
==> /etc/hibernate/ram.conf <==
TryMethod ususpend-ram.conf
TryMethod sysfs-ram.conf
==> /etc/hibernate/suspend2.conf <==
UseSuspend2 yes
Reboot no
EnableEscape yes
DefaultConsoleLevel 1
Compressor lzf
Encryptor none
FullSpeedCPU yes
Include common.conf
==> /etc/hibernate/sysfs-disk.conf <==
UseSysfsPowerState disk
Include common.conf
==> /etc/hibernate/sysfs-ram.conf <==
UseSysfsPowerState mem
Include common.conf
==> /etc/hibernate/ususpend-both.conf <==
USuspendMethod both
Include common.conf
==> /etc/hibernate/ususpend-disk.conf <==
USuspendMethod disk
Include common.conf
==> /etc/hibernate/ususpend-ram.conf <==
USuspendMethod ram
USuspendRamForce yes
USuspendRamAcpiSleep 1
Include common.conf

--- /sys/power
==> /sys/power/disk <==
[platform] test testproc shutdown reboot 
==> /sys/power/image_size <==
666318110
==> /sys/power/resume <==
254:1
==> /sys/power/state <==
standby mem disk

--- log
Starting suspend at Tue Oct 9 13:33:42 CEST 2007
hibernate: [01] Executing CheckLastResume ... 
hibernate: [01] Executing CheckRunlevel ... 
hibernate: [01] Executing LockFileGet ... 
hibernate: [01] Executing NewKernelFileCheck ... 
hibernate: [10] Executing EnsureUSuspendCapable ... 
hibernate: [20] Executing MiscLaunchAuxFunc1 ... 
Executing wpa_action wlan0 stop || true...
hibernate: [45] Executing FSTypesUnmount ... 
hibernate: [59] Executing RemountXFSBootRO ... 
hibernate: [89] Executing SaveKernelModprobe ... 
hibernate: [90] Executing ModulesUnload ... 
hibernate: [91] Executing ModulesUnloadBlacklist ... 
hibernate: [98] Executing CheckRunlevel ... 
hibernate: [99] Executing DoUSuspend ... 
hibernate: Running /usr/sbin/s2ram  -f -a 1 ...
hibernate: [90] Executing ModulesLoad ... 
hibernate: [89] Executing RestoreKernelModprobe ... 
hibernate: [70] Executing ClockRestore ... 
hibernate: [59] Executing RemountXFSBootRW ... 
hibernate: [01] Executing NoteLastResume ... 
hibernate: [01] Executing LockFilePut ... 
Resumed at Tue Oct 9 13:33:50 CEST 2007

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23-rc9-g18ca6f26-dirty (PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages hibernate depends on:
ii  console-tools              1:0.2.3dbs-65 Linux console and font utilities

Versions of packages hibernate recommends:
pn  dash                          <none>     (no description available)
ii  hdparm                        7.7-1      tune hard disk parameters for high
ii  uswsusp                       0.7-1      tools to use userspace software su
pn  vbetool                       <none>     (no description available)

-- no debconf information
--- /root/ususpend      2007-10-09 12:05:50.000000000 +0200
+++ /usr/share/hibernate/scriptlets.d/ususpend  2007-10-09 12:08:03.000000000 
+0200
@@ -9,6 +9,7 @@
 AddConfigHelp "USuspendRamVbeSave <boolean>" "Passes the -s flag to s2ram to 
save VBE state before suspending and restore after resume"
 AddConfigHelp "USuspendRamVbePost <boolean>" "Passes the -p flag to s2ram to 
VBE POST the graphics card after resume"
 AddConfigHelp "USuspendRamVbeMode <boolean>" "Passes the -m flag to s2ram to 
get VBE mode before suspend and set it after resume"
+AddConfigHelp "USuspendRamRadeontool <boolean>" "Passes the -r flag to s2ram 
to let radeontool turn of the backlight before suspending."
 AddConfigHelp "USuspendRamAcpiSleep <number>" "Passes the -a flag to s2ram to 
set the acpi_sleep parameter before suspend: 1=s3_bios, 2=s3_mode, 3=both"
 
 AddShortOption "n"
@@ -21,6 +22,7 @@
 USUSPEND_RAM_VBESAVE=0
 USUSPEND_RAM_VBEPOST=0
 USUSPEND_RAM_VBEMODE=0
+USUSPEND_RAM_RADEONTOOL=0
 USUSPEND_RAM_ACPISLEEP=0
 
 USuspendConfigEnabler() {
@@ -58,6 +60,9 @@
        ususpendramvbemode)
            BoolIsOn "$1" "$2" && USUSPEND_RAM_VBEMODE=1 || return 0
            ;;
+       ususpendramradeontool)
+           BoolIsOn "$1" "$2" && USUSPEND_RAM_RADEONTOOL=1 || return 0
+           ;;
        ususpendramacpisleep)
            USUSPEND_RAM_ACPISLEEP="$2" || return 0
            ;;
@@ -93,6 +98,7 @@
            [ $USUSPEND_RAM_FORCE -eq 1 ] && ARGS="$ARGS -f"
            [ $USUSPEND_RAM_VBESAVE -eq 1 ] && ARGS="$ARGS -s"
            [ $USUSPEND_RAM_VBEPOST -eq 1 ] && ARGS="$ARGS -p"
+           [ $USUSPEND_RAM_RADEONTOOL -eq 1 ] && ARGS="$ARGS -r"
            [ $USUSPEND_RAM_VBEMODE -eq 1 ] && ARGS="$ARGS -m"
            [ $USUSPEND_RAM_ACPISLEEP -ne 0 ] && ARGS="$ARGS -a 
$USUSPEND_RAM_ACPISLEEP"
        fi

--- End Message ---
--- Begin Message ---
Source: hibernate
Source-Version: 1.98-1

We believe that the bug you reported is fixed in the latest version of
hibernate, which is due to be installed in the Debian FTP archive:

hibernate_1.98-1.diff.gz
  to pool/main/h/hibernate/hibernate_1.98-1.diff.gz
hibernate_1.98-1.dsc
  to pool/main/h/hibernate/hibernate_1.98-1.dsc
hibernate_1.98-1_all.deb
  to pool/main/h/hibernate/hibernate_1.98-1_all.deb
hibernate_1.98.orig.tar.gz
  to pool/main/h/hibernate/hibernate_1.98.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
martin f. krafft <[EMAIL PROTECTED]> (supplier of updated hibernate package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sun, 30 Mar 2008 17:10:41 +0200
Source: hibernate
Binary: hibernate
Architecture: source all
Version: 1.98-1
Distribution: unstable
Urgency: low
Maintainer: martin f. krafft <[EMAIL PROTECTED]>
Changed-By: martin f. krafft <[EMAIL PROTECTED]>
Description: 
 hibernate  - smartly puts your computer to sleep (suspend to RAM or disk)
Closes: 445974 457185 464989 464989 473322
Changes: 
 hibernate (1.98-1) unstable; urgency=low
 .
   * Acknowledge NMU, thanks Morten!
   * New upstream release:
     - fixes get_env_var_of_process (closes: #457185)
     - implements USuspendRamPciSave  to allow passing the -v option to s2ram
       (closes: #473322).
     - implements USuspendRamRadeontool to allow passing the -r option to s2ram;
       thanks to Matthijs Kooijman (closes: #445974).
     - works around a bashism when mktemp is not available;
       thanks to Morten Werner Forsbring (closes: #464989).
     - removes further bashisms (local variables are initialised on
       declaration) (also closes: #464989).
   * debian/control: Now maintained in Git, so update Vcs-* headers.
   * Bump debhelper compatibility level to 6; no changes required.
   * Bump Standards-Version to 3.7.3; no changes required.
Files: 
 32a1575e7003e434aa937ee2414dd796 754 utils extra hibernate_1.98-1.dsc
 12b0168a84e7094a1c9a59b4a3303cc2 79303 utils extra hibernate_1.98.orig.tar.gz
 73e9ae76f3b0f07270962581190c5c15 15486 utils extra hibernate_1.98-1.diff.gz
 d5091984c17506fe17a08d2e43721d48 97954 utils extra hibernate_1.98-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFH8JO8IgvIgzMMSnURAsUDAJ9yQVbc19G3DVytrXXySzGl9Xl/4QCg5Ac9
SyIg7WS95M1USfJDxVbXBNc=
=j/S6
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to