diff options
author | Nate Lawson <njl@FreeBSD.org> | 2004-03-03 16:34:03 +0000 |
---|---|---|
committer | Nate Lawson <njl@FreeBSD.org> | 2004-03-03 16:34:03 +0000 |
commit | e2a643ee750979efccbf4132e70bf9fd4dcc5ee4 (patch) | |
tree | 9ab16234e8f989abc94161cec88e8fc020d2e6e2 | |
parent | 52c9f8bc70db07b56fa365c253cae679874a7197 (diff) | |
download | src-e2a643ee750979efccbf4132e70bf9fd4dcc5ee4.tar.gz src-e2a643ee750979efccbf4132e70bf9fd4dcc5ee4.zip |
Add acpi_video(4) man page.
PR:
Submitted by: Mark Santcroos <marks@ripe.net>
Reviewed by:
Approved by:
Obtained from:
MFC after:
Notes
Notes:
svn path=/head/; revision=126557
-rw-r--r-- | share/man/man4/Makefile | 1 | ||||
-rw-r--r-- | share/man/man4/acpi_video.4 | 78 |
2 files changed, 79 insertions, 0 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 798345f5e954..5e340fbae204 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -4,6 +4,7 @@ MAN= aac.4 \ acpi.4 \ acpi_thermal.4 \ + acpi_video.4 \ adv.4 \ adw.4 \ agp.4 \ diff --git a/share/man/man4/acpi_video.4 b/share/man/man4/acpi_video.4 new file mode 100644 index 000000000000..47a8d1f8cf8e --- /dev/null +++ b/share/man/man4/acpi_video.4 @@ -0,0 +1,78 @@ +.\" +.\" Copyright (c) 2004 Mark Santcroos <marks@ripe.net> +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD$ +.\" +.Dd March 03, 2004 +.Dt ACPI_VIDEO 4 +.Os +.Sh NAME +.Nm acpi_video +.Nd ACPI Video Extensions driver +.Sh SYNOPSIS +.Cd "device acpi_video" +.Sh DESCRIPTION +This driver uses the ACPI Video Extensions to control display switching and +backlight brightness. +The availability of the +.Xr sysctl 8 +variables depends on the functions offered by the hosts ACPI implementation. +.Sh SYSCTLS +The following sysctls are currently implemented, +where <device> is "crt", "lcd" or "tv": +.Bl -tag -width indent +.It Va hw.acpi.video.<device>.active +Current state of the device. +.It Va hw.acpi.video.<device>.levels +List of supported brightness levels. +.It Va hw.acpi.video.<device>.brightness +Current brightness level of the device. +.It Va hw.acpi.video.<device>.fullpower +Preset brightness level to be used in full power mode. +.It Va hw.acpi.video.<device>.economy +Preset brightness level to be used in economy mode. +.El +.Pp +Defaults for these variables can be set in +.Xr sysctl.conf 5 , +which is parsed at boot-time. +.Sh SEE ALSO +.Xr acpi 4 , +.Xr loader.conf 5 , +.Xr sysctl.conf 5 , +.Xr sysctl 8 +.Sh HISTORY +The +.Nm +driver first appeared in +.Fx 5.3 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Taku YAMAMOTO Aq taku@cent.saitama-u.ac.jp . +This manual page was written by +.An Mark Santcroos Aq marks@ripe.net . |