rpms/pm-utils/F-8 pm-utils-0.99.4-hibernate_mode.patch, NONE, 1.1 pm-utils-0.99.4-readme_update.patch, NONE, 1.1 pm-utils-bugreport-info.sh, NONE, 1.1 pm-utils-correct-filename-in-help.patch, NONE, 1.1 pm-utils-missing-uniq.patch, NONE, 1.1 pm-utils-nullglob.patch, NONE, 1.1 pm-utils.spec, 1.83, 1.84

Till Maas (till) fedora-extras-commits at redhat.com
Sat Apr 19 11:10:45 UTC 2008


Author: till

Update of /cvs/pkgs/rpms/pm-utils/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv30922

Modified Files:
	pm-utils.spec 
Added Files:
	pm-utils-0.99.4-hibernate_mode.patch 
	pm-utils-0.99.4-readme_update.patch pm-utils-bugreport-info.sh 
	pm-utils-correct-filename-in-help.patch 
	pm-utils-missing-uniq.patch pm-utils-nullglob.patch 
Log Message:
sync with latest pm-utils-0.99.4 from devel


pm-utils-0.99.4-hibernate_mode.patch:

--- NEW FILE pm-utils-0.99.4-hibernate_mode.patch ---
This patch makes it possible to use a different hibernate mode, valid modes are
according to Documentation/power/interface.txt
platform shutdown reboot testproc test
Author: Till Maas <opensource till name>
License: same as pm-utils
Red Hat Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=375701

diff -up pm-utils-0.99.4/pm/functions.hibernate_mode pm-utils-0.99.4/pm/functions
--- pm-utils-0.99.4/pm/functions.hibernate_mode	2008-01-08 19:07:17.000000000 +0100
+++ pm-utils-0.99.4/pm/functions	2008-01-08 19:11:33.000000000 +0100
@@ -10,6 +10,7 @@ export PATH=/sbin:/usr/sbin:/bin:/usr/bi
 # RESUME_MODULES
 #
 set -a
+HIBERNATE_MODE="platform"
 HIBERNATE_RESUME_POST_VIDEO=no
 INHIBIT=/var/run/pm-utils.inhibit
 PM_LOGFILE=${PM_LOGFILE:=/var/log/pm-suspend.log}
@@ -132,7 +133,7 @@ do_suspend()
 do_hibernate()
 {
 	[ ${DISABLE_HIBERNATE} == "yes" ] && return 0
-	echo -n "platform" > /sys/power/disk
+	echo -n "${HIBERNATE_MODE}" > /sys/power/disk
 	echo -n "disk" > /sys/power/state
 }
 

pm-utils-0.99.4-readme_update.patch:

--- NEW FILE pm-utils-0.99.4-readme_update.patch ---
diff -up pm-utils-0.99.4/README.readme_update pm-utils-0.99.4/README
--- pm-utils-0.99.4/README.readme_update	2006-10-30 19:16:48.000000000 +0100
+++ pm-utils-0.99.4/README	2008-01-09 03:41:48.000000000 +0100
@@ -24,30 +24,108 @@ file into the hooks directory, for examp
 - setting grub to be the default target for a hibernate-resume 
 - other wacky things that need doing on specific systems
 
-How do "hooks" work?
+How does pm-utils work?
 
-* You put a file in /etc/pm/hooks, which is executable.  When suspend or
+Pm-utils contains the following executables:
+
+* on_ac_power - checks whether the system is on ac power 
+                (see man 1 on_ac_power)
+* pm-is-supported - checks whether the system is capables of suspend or resume
+                    (see man 1 pm-is-supported)
+* pm-powersave - This runs the power.d hooks, it takes true or false as first
+                 argument, depending on whether power should be saved
+* pm-suspend - This runs the sleep.d hooks with suspend as first argument
+               (this is usually run by another tool, e.g. gnome-power-manager)
+               and finally suspends the machine (suspend to ram)
+* pm-hibernate - Thus runs the sleep.d hooks with hibernate as first argument
+                 (this is usually run by another tool, e.g. gnome-power-manager)
+                 and finally hibernates the machine (suspend to disk)
+* pm-suspend-hybrid - not yet implemented
+
+
+Pm-utils has the following directory structure in /usr/lib,
+the contens of the power.d and sleep.d may vary.
+
+/usr/lib/pm-utils/
+|-- bin
+|   |-- pm-action
+|   |-- pm-pmu
+|   `-- pm-reset-swap
+|-- defaults
+|-- functions
+|-- power.d
+|   `-- sched-powersave
+`-- sleep.d
+    |-- 00clear
+    |-- 01grub
+    |-- 05led
+    |-- 10NetworkManager
+    |-- 20video
+    |-- 49bluetooth
+    |-- 50modules
+    |-- 55battery
+    |-- 60sysfont
+    |-- 65alsa
+    |-- 90clock
+    |-- 94cpufreq
+    |-- 95led
+    |-- 99hd-apm-restore.hook
+    `-- 99video
+
+Within the power.d and sleep.d directories, the default hooks are stored.
+Adjustments can be done within /etc/pm:
+
+/etc/pm
+|-- config.d
+|   |-- 02oldconfig.conf
+|   `-- hd-apm-restore.conf
+|-- power.d
+`-- sleep.d
+    `-- 95ac-power-indicator.hook
+
+The config.d directory may contain bash scripts, that are sourced by
+pm-suspend and pm-hibernate to change the beheaviour of pm-utils.
+The power.d and sleep.d directories can be used to add your own hooks
+to pm-utils or to overwrite the default hooks. To overwrite an hook simply
+add a hook with the same name to the directory.
+
+
+How do hooks work?
+
+* You put a file in /etc/pm/sleep.d, which is executable.  When suspend or
   hibernate is called, several things happen:
   
   1) a new virtual terminal is alloced and switched to
-  2) /etc/pm/config is evaluated .  This config file that should only be
-     modified by end-users.
-  3) /etc/pm/config.d/* are evaluated in C sort order.  These files can be
-     provided by individual packages outside of pm-utils.  If a global config
-     variable is set, the value set to will be appended to the previous value.
-     If any other variable is set, it will be ignored.
-  4) each of /etc/pm/hooks/* are executed in C sort order.  The first command
+  2) /etc/pm/config.d/* are sourced in bash filename expansion sort order.  
+     These files can be provided by individual packages outside of pm-utils or
+     provided by the user.
+     To append to a global variable, please use BAR+=" foo", to append
+     the value foo separated with a space to the variable BAR
+  3) each of /etc/pm/sleep.d/* are executed in C sort order.  The first command
      line argument is "suspend" or "hibernate".  These files may source
      configuration files from /etc/pm/config.d/ on their own in order to pick
-     up variables set there that aren't part of the global list.  Note that
+     up variables set there that aren't part of the global list. Note that
      hooks should take care to preserve any global configuration variable
      which _that_ hook will later need to use, as sourcing this config file
      will clobber any such variables.
-  5) the system suspends or hibernates.
-  6) some event happens to wake the machine up
-  7) each of /etc/pm/hooks/* are executed in reverse C sort order.  The first
+  4) the system suspends or hibernates.
+  5) some event happens to wake the machine up
+  6) each of /etc/pm/sleep.d/* are executed in reverse C sort order.  The first
      command line argument is "resume" or "thaw".
-  8) the system switches back to the original virtual terminal from step 1.
+  7) the system switches back to the original virtual terminal from step 1.
 
   That's it!
 
+Which variables can be used to configure pm-utils?
+
+SUSPEND_MODULES
+  This is a space separted list of modules, that should be removed before sleep and
+  reloaded afterwards.
+
+HIBERNATE_MODE
+  This can be used to change the mode for hibernate. Default is platform. In case you
+  need to change it to shutdown, please file a bug report, because this usually is a
+  bug. Other valid modes are listed with
+  cat /sys/power/disk
+  You can find more info about them in the kernel documentation in
+  Documentation/power/*


--- NEW FILE pm-utils-bugreport-info.sh ---
#!/bin/bash
shopt -s nullglob
exec 2>&1
LANG=C

echo SUSPEND LOG
cat /var/log/pm-suspend.log
echo ======
echo SYS POWER
ls -lA /sys/power
echo ======
echo SYS POWER STATE
cat /sys/power/state
echo ======
echo SYS POWER DISK
cat /sys/power/disk
echo ======
echo HAL INFO
lshal | egrep "(system.hardware.(product|vendor|version)|system.firmware.version|power_management.quirk)"
echo ======
echo ETC PM
ls -lAR /etc/pm
for dir in /etc/pm/*
do
    echo DIR ${dir}
    for file in ${dir}/*
    do
        echo FILE $file
        cat ${file}
        echo ======
    done
    echo ======
done
echo UNAME
uname -a
echo ======
echo RPM
rpm --qf '%{name}-%{version}-%{release}\n' -q kernel pm-utils hal hal-info gnome-power-manager vbetool radeontool hdparm
echo ======
echo FEDORA RELEASE
cat /etc/fedora-release
echo ======

pm-utils-correct-filename-in-help.patch:

--- NEW FILE pm-utils-correct-filename-in-help.patch ---
This patch makes pm-action show the filename in help, that was used
to invoke it, e.g. pm-suspend

Index: src/pm-action
===================================================================
RCS file: /cvs/pm-utils/pm-utils/src/pm-action,v
retrieving revision 1.12
diff -u -r1.12 pm-action
--- src/pm-action	18 Jun 2007 20:42:36 -0000	1.12
+++ src/pm-action	24 Dec 2007 12:30:38 -0000
@@ -27,7 +27,7 @@
 # The rule here? Simplicity.
 
 help_options() {
-	echo "pm-action [options]"
+	echo "$(basename "$0") [options]"
 	echo
 	echo "Options can change how the supend or hibernate is done."
 	echo

pm-utils-missing-uniq.patch:

--- NEW FILE pm-utils-missing-uniq.patch ---
Red Hat Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=302401
(Issue 2 in the bug report)

Without the uniq files in the sleep.d or power.d directory may run twice.
Also this patch removes a uneccessary "-e" test in the if statements, the
"-x" test already includes a "-e" test.

Also this patch adds a modeline for vim no to expand tabs, because tabs are
used in the files for indentation.

Index: pm/functions
===================================================================
RCS file: /cvs/pm-utils/pm-utils/pm/functions,v
retrieving revision 1.47
diff -u -r1.47 functions
--- pm/functions	23 Dec 2007 23:01:46 -0000	1.47
+++ pm/functions	24 Dec 2007 12:24:25 -0000
@@ -1,4 +1,5 @@
 #!/bin/bash
+# vim:noexpandtab
 
 export PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/lib/pm-utils/bin
 
@@ -58,12 +59,10 @@
 find_sleepd_files()
 {
 	flist="/etc/pm/sleep.d/*[^~] /usr/lib/pm-utils/sleep.d/*[^~]"
-	bases=$(for file in $flist ; do echo $(basename $file) ; done | sort -n)
+	bases=$(for file in $flist ; do echo $(basename $file) ; done | sort -n | uniq)
 	for base in $bases ; do
-		if [ -e "/etc/pm/sleep.d/$base" ]; then
-			if [ -x "/etc/pm/sleep.d/$base" ]; then
-				echo /etc/pm/sleep.d/$base
-			fi
+		if [ -x "/etc/pm/sleep.d/$base" ]; then
+			echo /etc/pm/sleep.d/$base
 		elif [ -x "/usr/lib/pm-utils/sleep.d/$base" ]; then
 			echo /usr/lib/pm-utils/sleep.d/$base
 		fi
Index: src/pm-powersave
===================================================================
RCS file: /cvs/pm-utils/pm-utils/src/pm-powersave,v
retrieving revision 1.7
diff -u -r1.7 pm-powersave
--- src/pm-powersave	6 Mar 2007 19:08:06 -0000	1.7
+++ src/pm-powersave	24 Dec 2007 12:24:25 -0000
@@ -1,5 +1,5 @@
 #!/bin/bash
-#
+# vim:noexpandtab
 # Simple powersave script
 #
 # Copyright 2006 Red Hat, Inc.
@@ -27,12 +27,10 @@
 find_powerd_files()
 {
 	flist="/etc/pm/power.d/*[^~] /usr/lib/pm-utils/power.d/*[^~]"
-	bases=$(for file in $flist ; do echo $(basename $file) ; done | sort -n)
+	bases=$(for file in $flist ; do echo $(basename $file) ; done | sort -n | uniq)
 	for base in $bases ; do
-		if [ -e "/etc/pm/power.d/$base" ]; then
-			if [ -x "/etc/pm/power.d/$base" ]; then
-				echo /etc/pm/power.d/$base
-			fi
+		if [ -x "/etc/pm/power.d/$base" ]; then
+			echo /etc/pm/power.d/$base
 		elif [ -x "/usr/lib/pm-utils/power.d/$base" ]; then
 			echo /usr/lib/pm-utils/power.d/$base
 		fi

pm-utils-nullglob.patch:

--- NEW FILE pm-utils-nullglob.patch ---
Red Hat Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=302401
(Issue 1 in the bug report)
This patch makes sure that the nullglob option is set. This makes
sure that the result of a filename expansion is empty, when the
pattern does not match.

Index: pm/functions
===================================================================
RCS file: /cvs/pm-utils/pm-utils/pm/functions,v
retrieving revision 1.47
diff -u -r1.47 functions
--- pm/functions	23 Dec 2007 23:01:46 -0000	1.47
+++ pm/functions	24 Dec 2007 12:37:00 -0000
@@ -18,6 +18,10 @@
 [ -f /usr/lib/pm-utils/defaults ] && . /usr/lib/pm-utils/defaults
 set +a
 
+# set nullglob to make glob results empty in case the pattern does not
+# match any files
+shopt -s nullglob
+
 source_configs()
 {
 	cfgs="/etc/pm/config.d/*[^~]"
Index: src/pm-powersave
===================================================================
RCS file: /cvs/pm-utils/pm-utils/src/pm-powersave,v
retrieving revision 1.7
diff -u -r1.7 pm-powersave
--- src/pm-powersave	6 Mar 2007 19:08:06 -0000	1.7
+++ src/pm-powersave	24 Dec 2007 12:37:00 -0000
@@ -24,6 +24,10 @@
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 #
 
+# set nullglob to make glob results empty in case the pattern does not
+# match any files
+shopt -s nullglob
+
 find_powerd_files()
 {
 	flist="/etc/pm/power.d/*[^~] /usr/lib/pm-utils/power.d/*[^~]"


Index: pm-utils.spec
===================================================================
RCS file: /cvs/pkgs/rpms/pm-utils/F-8/pm-utils.spec,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- pm-utils.spec	23 Oct 2007 20:08:24 -0000	1.83
+++ pm-utils.spec	19 Apr 2008 11:10:09 -0000	1.84
@@ -2,28 +2,33 @@
 Summary: Power management utilities and scripts for Fedora
 License: GPLv2
 Version: 0.99.4
-Release: 6%{?dist}
+Release: 17%{?dist}
 Group: System Environment/Base
 URL: http://pm-utils.freedesktop.org
-ExclusiveArch: i386 x86_64 ia64 ppc ppc64 %{?arm}
 Requires: usermode kbd pciutils >= 2.2.1
 Requires: radeontool
-%ifarch %{ix86} %{x86_64}
+# for hd apm settings
+Requires: hdparm
+# for on_ac_power
+Requires: hal
+%ifarch %{ix86} x86_64
 Requires: vbetool
 %endif
 Conflicts: bluez-utils < 2.25-6
 Source0: pm-utils-%{version}.tar.gz
-
 Source1: pm-suspend.pam
 Source2: pm-hibernate.pam
 Source3: pm-powersave.pam
 Source4: pm-suspend-hybrid.pam
 
+
 Source11: pm-suspend.app
 Source12: pm-hibernate.app
 Source13: pm-powersave.app
 Source14: pm-suspend-hybrid.app
 
+Source23: pm-utils-bugreport-info.sh
+
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: hal-devel pkgconfig
 BuildRequires: dbus-devel >= 0.90
@@ -33,7 +38,11 @@
 Patch1: pm-utils-0.99.4-manpage-typo.patch
 Patch2: pm-utils-0.99.3-cfg.patch
 Patch3: pm-utils-0.99.4-logfile.patch
-Patch4: pm-utils-0.99.4-no-nv-suspend.patch
+Patch4: pm-utils-correct-filename-in-help.patch
+Patch5: pm-utils-missing-uniq.patch
+Patch6: pm-utils-nullglob.patch
+Patch7: pm-utils-0.99.4-hibernate_mode.patch
+Patch8: pm-utils-0.99.4-readme_update.patch
 
 
 %description
@@ -47,8 +56,11 @@
 %patch1 -p1 -b .manpage-typo
 %patch2 -p1 -b .cfg
 %patch3 -p1 -b .logfile
-%patch4 -p1 -b .nonvsuspend
-
+%patch4 -p0 -b .correct-filename-in-help
+%patch5 -p0 -b .missing-uniq
+%patch6 -p0 -b .nullglob
+%patch7 -p1 -b .hibernate_mode
+%patch8 -p1 -b .readme_update
 
 %build
 %configure --libdir=%{_exec_prefix}/lib
@@ -59,25 +71,28 @@
 
 make install DESTDIR=$RPM_BUILD_ROOT
 
-install -m 755 -d $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d
-for x in %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} ; do
-	y=$(basename ${x%%.pam})
-	install -T -m 644 $x $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d/$y
+install -m 0755 -d $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d
+for pamsource in %{SOURCE1} %{SOURCE2} %{SOURCE3} %{SOURCE4} ; do
+	filename=$(basename ${pamsource} .pam)
+	install -T -p -m 0644 ${pamsource} $RPM_BUILD_ROOT/%{_sysconfdir}/pam.d/${filename}
 done
-install -m 755 -d $RPM_BUILD_ROOT/%{_sysconfdir}/security/console.apps/
-for x in %{SOURCE11} %{SOURCE12} %{SOURCE13} %{SOURCE14} ; do
-	y=$(basename ${x%%.app})
-	install -T -m 644 $x $RPM_BUILD_ROOT/%{_sysconfdir}/security/console.apps/$y
+
+install -m 0755 -d $RPM_BUILD_ROOT/%{_sysconfdir}/security/console.apps/
+for source in %{SOURCE11} %{SOURCE12} %{SOURCE13} %{SOURCE14} ; do
+	filename=$(basename ${source} .app)
+	install -T -p -m 0644 ${source} $RPM_BUILD_ROOT/%{_sysconfdir}/security/console.apps/${filename}
 done
-install -m 755 -d $RPM_BUILD_ROOT/%{_bindir}
+
+install -m 0755 -d $RPM_BUILD_ROOT/%{_bindir}
 pushd $RPM_BUILD_ROOT/%{_bindir}
-for x in pm-hibernate pm-powersave pm-restart pm-shutdown pm-suspend ; do
-	ln -sf consolehelper $x
+for binary in pm-hibernate pm-powersave pm-suspend pm-suspend-hybrid; do
+	ln -sf consolehelper ${binary}
 done
 popd
-install -D -m 0600 /dev/null $RPM_BUILD_ROOT%{_localstatedir}/log/pm-suspend.log
 
+install -D -m 0600 /dev/null $RPM_BUILD_ROOT%{_localstatedir}/log/pm-suspend.log
 
+install -D -m 0755 %{SOURCE23} $RPM_BUILD_ROOT%{_bindir}/pm-utils-bugreport-info.sh
 
 %clean
 %{__rm} -rf $RPM_BUILD_ROOT
@@ -86,13 +101,13 @@
 %pre
 if [ -f %{_sysconfdir}/sysconfig/pm ]; then
 	mkdir -p %{_sysconfdir}/pm/config.d
-	mv %{_sysconfdir}/sysconfig/pm %{_sysconfdir}/pm/config.d/01oldconfig
+	mv %{_sysconfdir}/sysconfig/pm %{_sysconfdir}/pm/config.d/01oldconfig.conf
 fi
 
 
 %post
 if [ -f %{_sysconfdir}/pm/config.rpmsave ]; then
-	mv %{_sysconfdir}/pm/config.rpmsave %{_sysconfdir}/pm/config.d/02oldconfig
+	mv %{_sysconfdir}/pm/config.rpmsave %{_sysconfdir}/pm/config.d/02oldconfig.conf
 fi
 if [ -f %{_localstatedir}/log/pm-suspend.log ] ; then
 	chmod 0600 %{_localstatedir}/log/pm-suspend.log
@@ -102,30 +117,85 @@
 
 %files
 %defattr(-,root,root,-)
+%doc README COPYING AUTHORS ChangeLog
 %{_sysconfdir}/pm/
-%{_sysconfdir}/security/console.apps/*
-%{_sysconfdir}/pam.d/*
+%{_sysconfdir}/security/console.apps/pm-hibernate
+%{_sysconfdir}/security/console.apps/pm-powersave
+%{_sysconfdir}/security/console.apps/pm-suspend
+%{_sysconfdir}/security/console.apps/pm-suspend-hybrid
+%{_sysconfdir}/pam.d/pm-hibernate
+%{_sysconfdir}/pam.d/pm-powersave
+%{_sysconfdir}/pam.d/pm-suspend
+%{_sysconfdir}/pam.d/pm-suspend-hybrid
 %dir %{_exec_prefix}/lib/pm-utils/
 %{_exec_prefix}/lib/pm-utils/bin/
 %{_exec_prefix}/lib/pm-utils/defaults
 %{_exec_prefix}/lib/pm-utils/functions
 %{_exec_prefix}/lib/pm-utils/power.d/
 %{_exec_prefix}/lib/pm-utils/sleep.d/
-%{_bindir}/*
+%{_bindir}/on_ac_power
+%{_bindir}/pm-hibernate
+%{_bindir}/pm-is-supported
+%{_bindir}/pm-powersave
+%{_bindir}/pm-suspend
+%{_bindir}/pm-suspend-hybrid
+%{_bindir}/pm-utils-bugreport-info.sh
 %{_sbindir}/pm-hibernate
 %{_sbindir}/pm-powersave
 %{_sbindir}/pm-suspend
 %{_sbindir}/pm-suspend-hybrid
+%{_mandir}/man1/on_ac_power.1*
+%{_mandir}/man1/pm-pmu.1*
 
-%{_mandir}/man*/*
 %ghost %verify(not md5 size mtime) %{_localstatedir}/log/pm-suspend.log
 
 %changelog
-* Tue Oct 23 2007 Jeremy Katz <katzj at redhat.com> - 0.99.4-6
-- Set suspend to not supported by default on machines with nVidia graphics 
-  using the nv driver based on testing results.  Can be overriden if you 
-  know your machine works by setting ALLOW_NV_SUSPEND="yes" in a file 
-  in /etc/pm/config.d/
+* Sat Apr 19 2008 Till Maas <opensource till name> - 0.99.4-17
+- remove hd-apm script for Fedora 8 and 7
+
+* Thu Apr 03 2008 Adam Jackson <ajax at redhat.com> 0.99.4-16
+- x86_64 is not a macro, don't %%ifarch on it.
+
+* Tue Feb 19 2008 Fedora Release Engineering <rel-eng at fedoraproject.org> - 0.99.4-15
+- Autorebuild for GCC 4.3
+
+* Fri Jan 11 2008 Till Maas <opensource till name> - 0.99.4-14
+- add pm-utils-bugreport-info.sh script to collect information for bugreports
+- require Hal (RH #428452)
+
+* Wed Jan 09 2008 Till Maas <opensource till name> - 0.99.4-13
+- update README to describe the current beheaviour of pm-utils
+
+* Tue Jan 08 2008 Till Maas <opensource till name> - 0.99.4-12
+- remove ExclusiveArch, because it contains all supported archs
+  (in case an arch schould be excluded, please use ExcludeArch)
+- improve readability of usermode setup
+- remove pm-restart pm-shutdown from usermode setup, because
+  there are no such binaries
+- list more files in %%files explicit to make it obvious when
+  there are changes in the distributed package
+- add .conf suffix to oldconfig files
+
+* Tue Jan 08 2008 Till Maas <opensource till name> - 0.99.4-11
+- make it possible to specify the hibernate mode (RH #375701)
+
+* Wed Jan 02 2008 Till Maas <opensource till name> - 0.99.4-10
+- enhance hd-apm-restore and add a config file
+- fix source-definition for hd-apm-restore
+- add hook suffix for hook script
+
+* Wed Jan 02 2008 Till Maas <opensource till name> - 0.99.4-9
+- restore hd apm level (RH #382061)
+- Add hdparm requires for new hook
+
+* Mon Dec 31 2007 Till Maas <opensource till name> - 0.99.4-8
+- Add documentation to %%doc
+
+* Sun Dec 30 2007 Till Maas <opensource till name> - 0.99.4-7
+- fix some bugs (RH #302401)
+
+* Tue Nov 27 2007 Dennis Gilmore <dennis at ausil.us> - 0.99.4-6
+- add sparc archs to ExclusiveArch list
 
 * Wed Oct 10 2007 Till Maas <opensource till name> - 0.99.4-5
 - Require vbetool only for x86 archs (RH #325741)




More information about the fedora-extras-commits mailing list