diff options
author | will <will@FreeBSD.org> | 2002-05-20 18:50:58 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2002-05-20 18:50:58 +0000 |
commit | d62a129a258c427cbe154877b0cb9a396551a605 (patch) | |
tree | aabc8b3599d33f325055fdec83ec089dd15b841b /share | |
parent | dca97f23410189b50848de3744a5faca789c5a44 (diff) | |
download | FreeBSD-src-d62a129a258c427cbe154877b0cb9a396551a605.zip FreeBSD-src-d62a129a258c427cbe154877b0cb9a396551a605.tar.gz |
Add a manual page for the spic(4) device driver and hook it in the build.
Reviewed by: ru
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man4/Makefile | 1 | ||||
-rw-r--r-- | share/man/man4/spic.4 | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index e01f6ea..8009e1f 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -155,6 +155,7 @@ MAN= aac.4 \ smp.4 \ sn.4 \ snp.4 \ + spic.4 \ splash.4 \ sppp.4 \ st.4 \ diff --git a/share/man/man4/spic.4 b/share/man/man4/spic.4 new file mode 100644 index 0000000..0b80f91 --- /dev/null +++ b/share/man/man4/spic.4 @@ -0,0 +1,60 @@ +.\" +.\" Copyright (c) 2002 Will Andrews +.\" 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 May 20, 2002 +.Dt SPIC 4 +.Os +.Sh NAME +.Nm spic +.Nd Sony Programmable I/O Controller device driver +.Sh SYNOPSIS +.Cd "device spic" +.Sh DESCRIPTION +The +.Nm +driver allows using +.Xr moused 8 +to drive the Sony Vaio Jogdial device found on several Sony Vaio models. +It works by mapping the forward, backwards, up, and down inputs to +.Dq l , +.Dq r , +.Dq u , +.Dq d , +respectively. +From that a program reading the Jogdial can decide what to do. +Some actions might include scrolling, mimicking mouse buttons, launching +applications, or other useful things. +.Sh HISTORY +The +.Nm +device driver first appeared in +.Fx 4.6 . +.Sh SEE ALSO +.Xr moused 8 +.Sh AUTHORS +.An Nick Sayer Aq nsayer@FreeBSD.org +.An Will Andrews Aq will@FreeBSD.org |