aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/syscons/apm
Commit message (Collapse)AuthorAgeFilesLines
* Added necessary include for pc98.Yoshihiro Takahashi2001-01-251-0/+1
| | | | Notes: svn path=/head/; revision=71619
* Added PC-98 apm support.Yoshihiro Takahashi2001-01-222-0/+8
| | | | | | | Submitted by: MURAMATSU Atsushi <amura@ma3.seikyou.ne.jp> Notes: svn path=/head/; revision=71370
* select() DKI is now in <sys/selinfo.h>.Garrett Wollman2001-01-091-1/+1
| | | | Notes: svn path=/head/; revision=70834
* Use a consistent style and one much closer to the rest of /usr/srcDavid E. O'Brien2001-01-061-1/+1
| | | | Notes: svn path=/head/; revision=70711
* Don't needlessly indirect the APM softstate. It does nothing butNick Sayer2000-10-311-6/+2
| | | | | | | obfuscate the code. Notes: svn path=/head/; revision=68103
* Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead ofPeter Wemm2000-05-271-1/+1
| | | | | | | encoding the relative path. Notes: svn path=/head/; revision=60966
* Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.Peter Wemm2000-05-041-1/+1
| | | | | | | | | | This means that the kernel can be totally self contained now and is not dependent on the last buildworld to update /usr/share/mk. This might also make it easier to build 5.x kernels on 4.0 boxes etc, assuming gensetdefs and config(8) are updated. Notes: svn path=/head/; revision=59951
* Add the apm_saver syscons screen saver module.Nick Sayer1999-10-022-0/+100
apm_saver uses the apm_display() routine from the apm system to "suspend" the "display" part of the machine. This is beneficial for some laptops (or other machines with non-traditional displays) that choke on the 'green' saver's effect. Another way of looking at this is that it's the same as a screen saver that does an 'apm -d 0' to blank the display and an 'apm -d 1' to bring it back. One probably ought to use these commands to make sure the effect will be correct before using it unattended. Notes: svn path=/head/; revision=51851