Remove i386/busmouse(4); it's not supported on i386 any more.

This commit is contained in:
wiz 2003-05-15 18:53:34 +00:00
parent 8381108e2a
commit 717b2b1474
4 changed files with 6 additions and 88 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: mi,v 1.582 2003/05/15 13:13:21 wiz Exp $
# $NetBSD: mi,v 1.583 2003/05/15 18:53:34 wiz Exp $
./usr/share/info/am-utils.info man-amd-info
./usr/share/info/as.info man-computil-info
./usr/share/info/awk.info man-util-info
@ -701,7 +701,6 @@
./usr/share/man/cat4/i386/PCIBIOS.0 man-sys-catman
./usr/share/man/cat4/i386/apm.0 man-sys-catman
./usr/share/man/cat4/i386/autoconf.0 man-sys-catman
./usr/share/man/cat4/i386/busmouse.0 man-sys-catman
./usr/share/man/cat4/i386/cons.0 man-sys-catman
./usr/share/man/cat4/i386/console.0 man-sys-catman
./usr/share/man/cat4/i386/ed.0 man-sys-catman
@ -2509,7 +2508,6 @@
./usr/share/man/man4/i386/PCIBIOS.4 man-sys-man
./usr/share/man/man4/i386/apm.4 man-sys-man
./usr/share/man/man4/i386/autoconf.4 man-sys-man
./usr/share/man/man4/i386/busmouse.4 man-sys-man
./usr/share/man/man4/i386/cons.4 man-sys-man
./usr/share/man/man4/i386/console.4 man-sys-man
./usr/share/man/man4/i386/ed.4 man-sys-man

View File

@ -1,4 +1,4 @@
# $NetBSD: obsolete.mi,v 1.67 2003/05/15 13:13:22 wiz Exp $
# $NetBSD: obsolete.mi,v 1.68 2003/05/15 18:53:35 wiz Exp $
./usr/share/info/g++FAQ.info
./usr/share/info/tar.info
./usr/share/man/cat1/amq.0
@ -70,6 +70,7 @@
./usr/share/man/cat4/hp300/le.0
./usr/share/man/cat4/hp300/rb.0
./usr/share/man/cat4/hp300/tc.0
./usr/share/man/cat4/i386/busmouse.0
./usr/share/man/cat4/i386/com.0
./usr/share/man/cat4/i386/ie.0
./usr/share/man/cat4/i386/joy.0
@ -238,6 +239,7 @@
./usr/share/man/man4/hp300/le.4
./usr/share/man/man4/hp300/rb.4
./usr/share/man/man4/hp300/tc.4
./usr/share/man/man4/i386/busmouse.4
./usr/share/man/man4/i386/com.4
./usr/share/man/man4/i386/ie.4
./usr/share/man/man4/i386/joy.4

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.54 2003/05/15 13:13:22 wiz Exp $
# $NetBSD: Makefile,v 1.55 2003/05/15 18:53:35 wiz Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/5/93
MAN= apm.4 autoconf.4 busmouse.4 console.4 elansc.4 fdc.4 \
MAN= apm.4 autoconf.4 console.4 elansc.4 fdc.4 \
intro.4 io.4 lms.4 lpt.4 mem.4 mms.4 npx.4 \
pcibios.4 pnpbios.4
MLINKS= mem.4 kmem.4

View File

@ -1,82 +0,0 @@
.\" $NetBSD: busmouse.4,v 1.10 2003/04/16 13:35:21 wiz Exp $
.\"
.\" Copyright (c) 1996 Michael Graff
.\" 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.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by Michael Graff for the
.\" NetBSD Foundation, Inc.
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 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.
.\"
.Dd March 12, 1997
.Dt BUSMOUSE 4 i386
.Os
.Sh NAME
.Nm busmouse
.Nd Bus mouse driver
.Sh SYNOPSIS
.In machine/mouse.h
.Sh DESCRIPTION
Many mouse drivers internally convert the protocol
the mouse uses natively to a common busmouse protocol.
.Pp
The drivers allow information to be retrieved from the driver using an
.Xr ioctl 2
call or by reading the device directly using
.Xr read 2 .
.Pp
The
.Dv MOUSEIOCREAD
.Xr ioctl 2
is defined in the header
.Aq Pa machine/mouse.h .
It returns a
.Li struct mouseinfo .
.Pp
When reading the mouse device directly, each change of button state or
mouse movement generates a five byte event.
The bytes contain:
.Bl -tag -width xxxx -offset indent -compact
.It 1
Button status. (u_char)
.It 2
Right/left movement. Positive values indicate right, negative
left. (char)
.It 3
Up/down movement. Positive values indicate up, negative down. (char)
.It 4
Reserved. Should be zero. (char)
.It 5
Reserved. Should be zero. (char)
.El
.Pp
The direction bytes are signed characters, giving a range of +127 to -127.
A positive value indicates movement to the right or up, and a negative
value movement left or down.
.Sh SEE ALSO
.Xr ioctl 2 ,
.Xr read 2 ,
.Xr lms 4 ,
.Xr mms 4 ,
.Xr pms 4