Your message dated Fri, 25 Nov 2005 14:02:07 -0800 with message-id <[EMAIL PROTECTED]> and subject line Bug#323623: fixed in laptop-mode-tools 1.11-1 has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 17 Aug 2005 16:41:00 +0000 >From [EMAIL PROTECTED] Wed Aug 17 09:41:00 2005 Return-path: <[EMAIL PROTECTED]> Received: from rrzmta2.rz.uni-regensburg.de [132.199.1.17] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1E5QyK-00060w-00; Wed, 17 Aug 2005 09:41:00 -0700 Received: from rrzmta2.rz.uni-regensburg.de (localhost [127.0.0.1]) by localhost (Postfix) with SMTP id 17771145B6 for <[EMAIL PROTECTED]>; Wed, 17 Aug 2005 18:41:05 +0200 (CEST) Received: from pcph289.physik.uni-regensburg.de (pcph289.physik.uni-regensburg.de [132.199.102.116]) by rrzmta2.rz.uni-regensburg.de (Postfix) with ESMTP id 07DC2145AC for <[EMAIL PROTECTED]>; Wed, 17 Aug 2005 18:41:04 +0200 (CEST) Received: from 127.0.0.1 (ident=uMMs9zk6m0S) by earth with esmtp (masqmail 0.2.20) id 1E5QyH-6kH-00 for <[EMAIL PROTECTED]>; Wed, 17 Aug 2005 18:40:57 +0200 Subject: laptop-mode-tools: cpufreq stuff From: nokos <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> X-Reportbug-Version: 3.15 X-Debbugs-Cc: [EMAIL PROTECTED] X-Mutt-Fcc: Content-Type: multipart/mixed; boundary="=-haMdCcK7s0CRL6//dC36" Date: Wed, 17 Aug 2005 18:40:57 +0200 Message-Id: <[EMAIL PROTECTED]> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-9.4 required=4.0 tests=BAYES_00,HAS_PACKAGE, UPPERCASE_25_50,X_DEBBUGS_CC autolearn=ham version=2.60-bugs.debian.org_2005_01_02 --=-haMdCcK7s0CRL6//dC36 Content-Type: text/plain Content-Transfer-Encoding: 7bit Package: laptop-mode-tools Version: 1.08-1 Severity: wishlist Tags: patch laptop-mode-tools only handles the max frequency. The patch adds handing the min frequency and the governor. -- System Information: Debian Release: testing/unstable APT prefers hoary-security APT policy: (500, 'hoary-security'), (500, 'hoary'), (500, 'unstable'), (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12.1 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages laptop-mode-tools depends on: ii powermgmt-base 1.22 Common utils and configs for power Versions of packages laptop-mode-tools recommends: ii acpid 1.0.4-2 Utilities for using ACPI power man ii hdparm 6.1-4 tune hard disk parameters for high -- no debconf information -- nokos <[EMAIL PROTECTED]> --=-haMdCcK7s0CRL6//dC36 Content-Disposition: attachment; filename=laptop_mode.diff Content-Type: text/x-patch; name=laptop_mode.diff; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit --- laptop_mode.org 2005-08-13 17:43:18.000000000 +0200 +++ laptop_mode 2005-08-14 12:25:31.000000000 +0200 @@ -61,9 +61,15 @@ NOLM_DIRTY_BACKGROUND_RATIO=10 NOLM_DIRTY_RATIO=40 LM_SECONDS_BEFORE_SYNC=2 - BATT_CPU_MAXFREQ=slowest + BATT_CPU_MAXFREQ=fastest + BATT_CPU_MINFREQ=slowest + BATT_CPU_GOVENOR=conservative LM_AC_CPU_MAXFREQ=fastest + LM_AC_CPU_MINFREQ=slowest + NOLM_AC_CPU_GOVERNOR=performance NOLM_AC_CPU_MAXFREQ=fastest + NOLM_AC_CPU_MINFREQ=slowest + NOLM_AC_CPU_GOVERNOR=ondemand CONTROL_CPU_MAXFREQ=0 HD="/dev/[hs]d[abcdefgh]" CONTROL_SYSLOG_CONF=0 @@ -685,25 +691,41 @@ if [ $CONTROL_CPU_MAXFREQ -eq 1 ] ; then if [ $ON_AC -eq 1 ] ; then - if [ "$ACTION" = "start"] ; then + if [ "$ACTION" = "start" ] ; then CPU_MAXFREQ="$LM_AC_CPU_MAXFREQ" + CPU_MINFREQ="$LM_AC_CPU_MINFREQ" + CPU_GOVERNOR="$LM_AC_CPU_GOVERNOR" else CPU_MAXFREQ="$NOLM_AC_CPU_MAXFREQ" + CPU_MINFREQ="$NOLM_AC_CPU_MINFREQ" + CPU_GOVERNOR="$NOLM_AC_CPU_GOVERNOR" fi else CPU_MAXFREQ="$BATT_CPU_MAXFREQ" + CPU_MINFREQ="$BATT_CPU_MINFREQ" + CPU_GOVERNOR="$BATT_CPU_GOVERNOR" fi for THISCPU in /sys/devices/system/cpu/* ; do if [ -e $THISCPU/cpufreq/cpuinfo_min_freq ]; then THIS_CPU_MAXFREQ="$CPU_MAXFREQ" + THIS_CPU_MINFREQ="$CPU_MINFREQ" + THIS_CPU_GOVERNOR="$CPU_GOVERNOR" if [ "$CPU_MAXFREQ" = 'slowest' ]; then THIS_CPU_MAXFREQ=`cat $THISCPU/cpufreq/cpuinfo_min_freq` fi + if [ "$CPU_MINFREQ" = 'slowest' ]; then + THIS_CPU_MINFREQ=`cat $THISCPU/cpufreq/cpuinfo_min_freq` + fi if [ "$CPU_MAXFREQ" = "fastest" ] ; then THIS_CPU_MAXFREQ=`cat $THISCPU/cpufreq/cpuinfo_max_freq` fi + if [ "$CPU_MINFREQ" = "fastest" ] ; then + THIS_CPU_MINFREQ=`cat $THISCPU/cpufreq/cpuinfo_max_freq` + fi echo "Setting CPU maximum frequency for cpu $THISCPU to $THIS_CPU_MAXFREQ." > $OUTPUT echo $THIS_CPU_MAXFREQ > $THISCPU/cpufreq/scaling_max_freq + echo $THIS_CPU_MINFREQ > $THISCPU/cpufreq/scaling_min_freq + echo $THIS_GOVERNOR > $THISCPU/cpufreq/scaling_governor fi done fi --=-haMdCcK7s0CRL6//dC36-- --------------------------------------- Received: (at 323623-close) by bugs.debian.org; 25 Nov 2005 22:11:24 +0000 >From [EMAIL PROTECTED] Fri Nov 25 14:11:24 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 4.50) id 1Efldv-0001Yi-Nj; Fri, 25 Nov 2005 14:02:07 -0800 From: Bart Samwel <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.60 $ Subject: Bug#323623: fixed in laptop-mode-tools 1.11-1 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Fri, 25 Nov 2005 14:02:07 -0800 X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-CrossAssassin-Score: 9 Source: laptop-mode-tools Source-Version: 1.11-1 We believe that the bug you reported is fixed in the latest version of laptop-mode-tools, which is due to be installed in the Debian FTP archive: laptop-mode-tools_1.11-1.diff.gz to pool/main/l/laptop-mode-tools/laptop-mode-tools_1.11-1.diff.gz laptop-mode-tools_1.11-1.dsc to pool/main/l/laptop-mode-tools/laptop-mode-tools_1.11-1.dsc laptop-mode-tools_1.11-1_all.deb to pool/main/l/laptop-mode-tools/laptop-mode-tools_1.11-1_all.deb laptop-mode-tools_1.11.orig.tar.gz to pool/main/l/laptop-mode-tools/laptop-mode-tools_1.11.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. Bart Samwel <[EMAIL PROTECTED]> (supplier of updated laptop-mode-tools 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: Sat, 29 Oct 2005 16:40:00 +0200 Source: laptop-mode-tools Binary: laptop-mode-tools Architecture: source all Version: 1.11-1 Distribution: unstable Urgency: low Maintainer: Bart Samwel <[EMAIL PROTECTED]> Changed-By: Bart Samwel <[EMAIL PROTECTED]> Description: laptop-mode-tools - Userland scripts to control "laptop mode" Closes: 323623 324137 324457 325186 326433 327028 328028 328118 328432 335492 336294 Changes: laptop-mode-tools (1.11-1) unstable; urgency=low . * New upstream version 1.11. * (Closes: #328118) Unset VERBOSE before starting. * (Closes: #328432) Check if block device is block device before treating it as such. * (Closes: #335492, #326433) Check if /var/run/laptop-mode-nolm-mount-opts exists before using it. * (Closes: #325186) Change default for CONTROL_HD_POWERMGMT to 0, because it causes system crashes on some hardware. * (Closes: #328028) Check if hdparm is installed before using it. * (Closes: #324457) Fit config file in 80-character screen. * (Closes: #327028) Check whether requested state matches old state, and do nothing if so. * (Closes: #336294) Send error output of hdparm to /dev/null. * (Closes: #323623) CPU frequency governor and minimum frequency control. * (Closes: #324137) Add lm-profiler, accompanying config file lm-profiler.conf, and several subdirectories to /etc/laptop-mode for controlling daemons. Files: c14ede2e436d19d2ecfccedfbfbc596a 594 utils optional laptop-mode-tools_1.11-1.dsc f5c882e2ba1953b80abd1d7cd38c3a51 51501 utils optional laptop-mode-tools_1.11.orig.tar.gz 388990af6d05ec40b481538d7a2db71f 4676 utils optional laptop-mode-tools_1.11-1.diff.gz cc8f22bdd5df5310eb859121b1477841 52690 utils optional laptop-mode-tools_1.11-1_all.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (GNU/Linux) iD8DBQFDh4XjKb5dImj9VJ8RAjoBAJ0bkAQmPZVHJeDnz7NDxzgD5ESZigCghK4t +FyN4pgjHLbL5EaKbpfIo2g= =+PIc -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]