1999-04-11 00:15:40 +00:00
|
|
|
.\" Copyright (c) 1999
|
2000-10-26 15:30:44 +00:00
|
|
|
.\" Nick Hibma <n_hibma@FreeBSD.org>. All rights reserved.
|
1999-04-11 00:15:40 +00:00
|
|
|
.\"
|
|
|
|
.\" 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.
|
|
|
|
.\"
|
2010-03-04 22:06:57 +00:00
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
1999-04-11 00:15:40 +00:00
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
2010-03-04 22:06:57 +00:00
|
|
|
.\" 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.
|
1999-04-11 00:15:40 +00:00
|
|
|
.\"
|
2005-02-09 18:07:17 +00:00
|
|
|
.\" $FreeBSD$
|
1999-04-11 00:15:40 +00:00
|
|
|
.\"
|
2006-11-27 18:37:45 +00:00
|
|
|
.Dd November 27, 2006
|
1999-11-15 23:14:32 +00:00
|
|
|
.Dt UMS 4
|
2001-07-10 15:31:11 +00:00
|
|
|
.Os
|
1999-04-11 00:15:40 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm ums
|
|
|
|
.Nd USB mouse driver
|
|
|
|
.Sh SYNOPSIS
|
2006-11-22 21:30:02 +00:00
|
|
|
To compile this driver into the kernel,
|
2006-11-27 18:37:45 +00:00
|
|
|
place the following lines in your
|
2006-11-22 21:30:02 +00:00
|
|
|
kernel configuration file:
|
|
|
|
.Bd -ragged -offset indent
|
2000-01-23 16:13:26 +00:00
|
|
|
.Cd "device ums"
|
2006-11-27 18:37:45 +00:00
|
|
|
.Cd "device uhci"
|
|
|
|
.Cd "device ohci"
|
|
|
|
.Cd "device usb"
|
2006-11-22 21:30:02 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
Alternatively, to load the driver as a
|
|
|
|
module at boot time, place the following line in
|
|
|
|
.Xr loader.conf 5 :
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
ums_load="YES"
|
|
|
|
.Ed
|
1999-04-11 00:15:40 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
2000-03-01 14:50:24 +00:00
|
|
|
driver provides support for mice that attach to the USB port.
|
|
|
|
Supported are
|
1999-04-11 00:15:40 +00:00
|
|
|
mice with any number of buttons and mice with a wheel.
|
|
|
|
.Pp
|
2006-11-27 18:37:45 +00:00
|
|
|
The
|
|
|
|
.Pa /dev/ums0
|
|
|
|
device presents the mouse as a
|
1999-06-18 16:53:33 +00:00
|
|
|
.Ar sysmouse
|
|
|
|
or
|
|
|
|
.Ar mousesystems
|
2000-03-01 14:50:24 +00:00
|
|
|
type device.
|
|
|
|
See
|
2006-11-27 18:37:45 +00:00
|
|
|
.Xr moused 8
|
1999-06-18 16:53:33 +00:00
|
|
|
for an explanation of these mouse types.
|
1999-04-11 00:15:40 +00:00
|
|
|
.Sh FILES
|
|
|
|
.Bl -tag -width /dev/ums0 -compact
|
|
|
|
.It Pa /dev/ums0
|
|
|
|
blocking device node
|
2000-12-29 09:18:45 +00:00
|
|
|
.El
|
2000-11-17 11:44:16 +00:00
|
|
|
.Sh EXAMPLES
|
2006-11-27 18:37:45 +00:00
|
|
|
Use the first
|
|
|
|
USB mouse on the system as your console mouse:
|
1999-04-11 14:27:52 +00:00
|
|
|
.Pp
|
|
|
|
.Dl moused -p /dev/ums0 -t auto
|
|
|
|
.Pp
|
2006-11-27 18:37:45 +00:00
|
|
|
To be able to use the USB mouse under X, change the "Pointer" section in
|
2005-02-05 14:09:09 +00:00
|
|
|
.Nm xorg.conf
|
2006-11-27 18:37:45 +00:00
|
|
|
to the following:
|
1999-04-11 14:27:52 +00:00
|
|
|
.Pp
|
|
|
|
.Dl Device "/dev/ums0"
|
|
|
|
.Dl Protocol "Auto"
|
|
|
|
.Pp
|
|
|
|
If you want to be able to use the mouse in both virtual consoles as well
|
1999-06-18 16:53:33 +00:00
|
|
|
as in X change it to:
|
1999-04-11 14:27:52 +00:00
|
|
|
.Pp
|
|
|
|
.Dl Device "/dev/sysmouse"
|
|
|
|
.Dl Protocol "Auto"
|
1999-04-11 00:15:40 +00:00
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr ohci 4 ,
|
1999-04-11 14:27:52 +00:00
|
|
|
.Xr sysmouse 4 ,
|
1999-08-15 10:48:36 +00:00
|
|
|
.Xr uhci 4 ,
|
|
|
|
.Xr usb 4 ,
|
2006-11-27 18:37:45 +00:00
|
|
|
.Xr xorg.conf 5 Pq Pa ports/x11/xorg ,
|
2001-07-14 19:41:16 +00:00
|
|
|
.Xr moused 8
|
1999-08-15 10:48:36 +00:00
|
|
|
.Sh AUTHORS
|
2000-11-22 09:35:58 +00:00
|
|
|
.An -nosplit
|
1999-04-11 00:15:40 +00:00
|
|
|
The
|
2000-11-20 18:41:33 +00:00
|
|
|
.Nm
|
1999-04-11 00:15:40 +00:00
|
|
|
driver was written by
|
|
|
|
.An Lennart Augustsson Aq augustss@cs.chalmers.se
|
1999-08-15 10:48:36 +00:00
|
|
|
for
|
|
|
|
.Nx
|
|
|
|
and was adopted for
|
|
|
|
.Fx
|
|
|
|
by
|
1999-04-11 00:15:40 +00:00
|
|
|
.An MAEKAWA Masahide Aq bishop@rr.iij4u.or.jp .
|
|
|
|
.Pp
|
|
|
|
This manual page was written by
|
2001-07-14 19:41:16 +00:00
|
|
|
.An Nick Hibma Aq n_hibma@FreeBSD.org
|
1999-04-11 14:27:52 +00:00
|
|
|
with input from
|
|
|
|
.An Kazutaka YOKOTA Aq yokota@zodiac.mech.utsunomiya-u.ac.jp .
|