summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-02-08Bump revision in preperation for release.pm-utils-1.1.3pm-utils-1.1Victor Lowther1-1/+1
2009-02-08Resolve 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.
2008-10-03Bump version number to 1.1.2.5pm-utils-1.1.2.5Victor Lowther1-1/+1
2008-09-13Added support for the nofb and pci_save HAL quirks.Victor Lowther1-1/+37
Right now there are no entries in any of the .fdi files that specify use of these quirks, which is why they were probably never implemented in pm-utils.
2008-09-13Updated 98smart-kernel-video to be aware of new quirksVictor Lowther1-3/+9
Are the kernel video drivers spart enough to handle no-fb and pci-save? Only time will tell.
2008-09-10Fix logging bug that was aborting help after the first hook.Victor Lowther1-1/+1
2008-07-27Bump release to pm-utils-1.1.2.4pm-utils-1.1.2.4Victor Lowther1-1/+1
2008-07-23Remove stupid syntax errors from 98smart-kernel-videoVictor Lowther1-1/+2
2008-07-21Greatly expanded the 98smart-kernel-video hook.Victor Lowther1-12/+59
Each intelligent driver gets its own section, and we no longer remove s3-bios and s3-mode quirks if we are using Intel kernel modesetting.
2008-06-20update to pm-utils 1.1.2.3 with no changepm-utils-1.1.2.3Victor Lowther1-1/+1
2008-06-08Bumped revision to 1.1.2.3-test1 for testing purposes.Victor Lowther1-1/+1
2008-06-05Escape > comparison in 98smart-kernel-videoVictor Lowther1-1/+1
This closes Bug 16175 in fd.o bugzilla
2008-05-28Bump revision to 1.1.2.2pm-utils-1.1.2.2Victor Lowther1-1/+1
2008-05-28Don't quote $PM_CMDLINE when saving initial parameters.Victor Lowther1-1/+1
2008-05-28Make parameter manipulation more robust in the face of programmerVictor Lowther2-8/+9
error. Use cp and rm when manipulating parameter files instead of mv.
2008-05-28Fix broken add_parameters functionality.Victor Lowther2-3/+4
Also change storage directory cleanup to make things like this easier to debug in the future.
2008-05-27Bump revision numberpm-utils-1.1.2.1Victor Lowther1-1/+1
2008-05-27Save PM_CMDLINE correctly so that it shows up nicely in the logs.Victor Lowther1-1/+2
2008-05-27Ensure that PARAMETERS.rm always exists.Victor Lowther1-1/+1
2008-05-27Moved parameter saving os that it always happens after we take the lock.Victor Lowther1-6/+4
2008-05-27Fix reversed logic when creating a parameters file.Victor Lowther1-1/+1
2008-05-27Save all parameters into a file instead of one file per param.Victor Lowther2-25/+20
This closes a security hole noticed by mbiebl.
2008-05-27Return $NA instead of 1 when smart-kernel-video is not applicable.Victor Lowther1-1/+1
2008-05-27Fixed error resulting in no parameters being saved.Victor Lowther1-1/+3
Moved the "mkdir -p ${STORAGEDIR}" command.
2008-05-26Merge branch 'man-xml'pm-utils-1.1.2Victor Lowther2-13/+17
2008-05-26Actually install the documentation.Victor Lowther2-0/+7
2008-05-26Bump version number in preperation for releaseVictor Lowther1-1/+1
2008-05-26Merge branch 'man-xml'Victor Lowther8-23/+853
xml-ized our manpages, and added manpages graciously donated by the Debian project.
2008-05-26Merge branch 'vlowther-binary-video-quirks'Victor Lowther5-32/+95
2008-05-22Fix ChangeLog generation in distcheckDan Nicholson1-1/+8
Fixed the ChangeLog target for all the various situations it might fail in distcheck.
2008-05-22Don't remove ChangeLog on distcleanDan Nicholson1-1/+1
distclean is used in tarballs to return to a pristine state. Removing the distributed ChangeLog would violate that.
2008-05-22Ignore more generated filesDan Nicholson2-1/+2
2008-05-22xmlto only takes a single file, don't pass moreDan Nicholson1-2/+2
Minor nitpick so that only a single file, the first prerequisite, is passed to xmlto since it can only handle taking a single file. There was only one prerequisite anyway, so... not much to see here.
2008-05-22Only create manpage symlinks when target pages have been installedDan Nicholson1-5/+7
Instead of always creating the symlinks to pm-action.8, we first check that it's actually installed.
2008-05-22Only build manpages when xmlto is availableDan Nicholson2-6/+8
Don't require users to have xmlto and DocBook XML installed just to try pm-utils. However, since the man pages are required for dist, prebuilt pages will be available in the tarballs.
2008-05-17Missing a <para> tag in pm-powersaveVictor Lowther1-1/+2
2008-05-17Stefan pointed out that >= is not a valid string comparison op for test.Victor Lowther1-1/+2
2008-05-17More pm-actiom manpage updates.Victor Lowther1-30/+26
2008-05-17Remenber to set IFS back to normal before exiting run_quirks.Victor Lowther1-0/+1
2008-05-17arrgh, need to actually export PM_CMDLINE.Victor Lowther1-1/+1
2008-05-17Cleanups to parameter manipulation to make it a bit less evilVictor Lowther2-8/+18
This involved restructuring the run_hooks loop a bit, but it does clean things up some.
2008-05-16log() is not in scope in hooks.Victor Lowther1-2/+2
2008-05-16Make remove_parameters all work again.Victor Lowther1-4/+10
2008-05-16Fix another stupid error in get_parametersVictor Lowther1-1/+1
* is not a valid parameter.
2008-05-16fix stupid typo in get_parameters.Victor Lowther1-1/+1
2008-05-16Handle binary video drivers using --quirk-none instead of disable_hookVictor Lowther3-26/+32
Otherwise, we would have to duplicate everything to handle the uswsusp use case, and that would be extra annoying.
2008-05-16Minor cleanups in 98-smart-kernel-videoVictor Lowther1-12/+8
2008-05-16Split smart kernel video driver handling to a different hook.Victor Lowther3-18/+37
The new 98-smart-kernel-video hook just disables 99video outright if we are running a video driver that is spart enough to handle its own quirks.
2008-05-16Added support for vbe post with a romfileVictor Lowther1-1/+8
Apparently some video cards do not post when using the onboard BIOS.
2008-05-16Added support in 99video to check for a "smart enough" kernel video driverVictor Lowther1-0/+17
One that is "smart enough" knows how to handle video card reinitialization without needing any of the usual quirks. Right now that list includes: * nVidia binary driver. * fglrx ATI binary driver. * Intel i915 DRM driver on kernels at or after 2.6.26