summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-02-08Bump version number for pm-utils 1.2.4pm-utils-1.2.4Victor Lowther1-1/+1
2009-02-06Make CHASSIS_TYPE always have Unknown if we cannot determine the chassis type.Victor Lowther1-1/+1
2009-01-26Resolve fd.o bug# 19658Victor Lowther1-1/+1
modunload was not unloading dependent modules correctly due to incorrect string handling. Fix provided by zak.kipling@cantab.net.
2009-01-26Merge commit 'UPSTREAM/master'Victor Lowther1-1/+2
2009-01-18Match gentoo message "started" when checking for running servicesDan Nicholson1-1/+2
Gentoo uses the convention of printing the message "started" when showing the status of services. Augment stopservice() to check this in addition to "running". This also drops the unnecessary -c argument from the grep command. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2008-12-15Fix broken quirk handling introduced by auto-quirk debugging change.Victor Lowther1-1/+1
2008-12-15By default, pm-powersave does nothing with laptop-mode.Victor Lowther1-11/+2
So dpn't even mention it in our manpages.
2008-12-14Echo the quirks we got from HAL in 00auto-quirk.Victor Lowther1-3/+5
This will make pm-utils slightly easier to debug. Thanks, Michael Biebl for the idea.
2008-12-14hal-get-porperty runs just fine as a normal userVictor Lowther1-1/+1
2008-12-14Merge branch 'pm-utils-1.2'Victor Lowther1-1/+1
2008-12-11Fix silly typo in pm-utils.pc.in. Thanks, Robby!Victor Lowther1-1/+1
2008-12-11Merge branch 'pm-utils-1.2'Victor Lowther1-2/+0
2008-12-11Export the default config dir using pkgconfig.Victor Lowther1-0/+1
2008-12-05Do not try to make removed hookspm-utils-1.2.3Victor Lowther1-2/+0
2008-12-03Merge branch 'master' into pm-utils-1.2Victor Lowther18-187/+177
Conflicts: configure.ac
2008-12-03Merge branch 'maybe-pm-utils-1.2.3'Victor Lowther13-162/+173
2008-12-01Updated NEWS with major items for the 1.2 series.Victor Lowther1-54/+53
2008-11-30Added notes on how to minimized user impact.Victor Lowther1-0/+13
After all, user perception of these things is our reality.
2008-11-30Add more comments to uswsusp since it is being used as an example in ↵Victor Lowther1-6/+19
documentation
2008-11-30Describe stackable sleep modules in HOWTO.modules.Victor Lowther1-42/+23
2008-11-30Drop 50ntpdVictor Lowther1-28/+0
ntpd operates normally over a sleep/wake cycle. Stoppping and restarting it in a sleep hook is too adhoc. If it is essential that ntpd be stopped and restarted, then having NetworkManager do the job when interfaces go offline and come back online is a better way to do things.
2008-11-30Drop 65alsa -- it is useless by itself.Victor Lowther1-19/+0
alsa drivers that support suspend/resume will save their state without it. alsa drivers that don't will need to be unloaded and reloaded as well as having their state saved and restored to work properly. See thread at http://mailman.alsa-project.org/pipermail/alsa-devel/2008-November/013030.html
2008-11-30Support Slackware init system.Victor Lowther1-8/+7
2008-11-3090clock takes over a second to run on suspend.Victor Lowther4-0/+24
Most systems do not need it. Add NEED_CLOCK_SYNC, and only run hwclock if it is set. This will probably go away entirely in a later release.
2008-11-30Bump revision numberVictor Lowther1-1/+1
2008-11-30Remove 55batteryVictor Lowther2-21/+0
HAL has handled rescanning the batteries since mid 2006.
2008-11-30Modified pm-utils.pc.in to make autoconf intergration easierVictor Lowther2-1/+25
This adds pm_sleephooks, pm_powerhooks, and pm_sleepmodules to the values that pkg-config can return.
2008-11-29Bump revision numberVictor Lowther1-1/+1
2008-11-28Don't try to build 55battery anymoreVictor Lowther1-1/+0
2008-11-2890clock takes over a second to run on suspend.Victor Lowther1-0/+2
Most systems do not need it. Add NEED_CLOCK_SYNC, and only run hwclock if it is set. This should eventually turn into a quirk.
2008-11-27HAL has handled this since mid 2006.Victor Lowther1-20/+0
2008-10-29Added dbus_send helper function.Victor Lowther4-5/+12
This function works just like dbus-send, but returns $NA if the command fails for any reason. Also modified hooks to use dbus_send where applicable.
2008-10-07Reset acpi_video_flags before suspend.Michael Biebl1-3/+1
If no --quirk-s3-* option is passed to pm-suspend, set acpi_video_flags to 0. This allows to reliably test different set of quirks and clears any flags that were set via the kernel boot option. We deliberately ignore the kernel acpi_sleep option, quirks should be set via HAL.
2008-10-06pm-utils-1.2.2.1pm-utils-1.2.2.1Victor Lowther1-1/+1
2008-10-06One last cleanup in 00auto-quirksMichael Biebl1-1/+1
2008-10-05Merge branch 'master' into pm-utils-1.2pm-utils-1.2.2Victor Lowther3-6/+83
2008-10-05Do not save quirks if we were inhibited.Victor Lowther1-0/+1
2008-10-05--store-quirks-as-fdi, not --save-quirks-as-fdiVictor Lowther1-1/+1
2008-10-05Document sleep module fallback behaviour in pm-action man page.Victor Lowther1-1/+2
2008-10-05Document hook ordering convention in the pm-action man page.Victor Lowther1-3/+44
2008-10-05Document --auto-quirks and --save-quirks-as-fdi in the pm-action man page.Victor Lowther1-1/+33
2008-10-05Always reset acpi video flags in 99video on resumeVictor Lowther1-0/+2
2008-10-05Numbers are also valid in quirks from lshal.Victor Lowther1-1/+1
2008-10-05Bump revision number to 1.2.2Victor Lowther1-1/+1
2008-10-05Merge branch 'master' into pm-utils-1.2Victor Lowther5-13/+13
2008-10-05Fix incomplete renaming of _METHOD to _MODULEVictor Lowther2-8/+8
2008-10-05Fix stupid thinko in has_parameterVictor Lowther1-1/+1
2008-10-04Do not save generated .fdi in /tmpVictor Lowther1-2/+2
Instead, save them in /etc/hal/fdi/information. Closes an airline-plot potential DoS attack.
2008-10-03Bump version to 1.2.1pm-utils-1.2.1Victor Lowther1-1/+1
2008-10-03Merge branch 'auto-backend' into pm-utils-1.2Victor Lowther6-141/+176