diff options
author | Nathan Binkert <nate@cvs.openbsd.org> | 2002-06-11 07:56:14 +0000 |
---|---|---|
committer | Nathan Binkert <nate@cvs.openbsd.org> | 2002-06-11 07:56:14 +0000 |
commit | d469675eafc99b926c2c6bbe2328e75ef997f0e2 (patch) | |
tree | 9524f750e1b0026149d3b24d1c083d4af04b15f5 | |
parent | 6ba15ef9bbb8dcda58f6cc9d215f11e578c15d71 (diff) |
Add manpage for umidi(4)
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/umidi.4 | 75 |
2 files changed, 77 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 1103eb2c1bc..ed4a4371374 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.214 2002/06/11 07:55:35 nate Exp $ +# $OpenBSD: Makefile,v 1.215 2002/06/11 07:56:13 nate Exp $ MAN= aac.4 ac97.4 addcom.4 adv.4 aha.4 ahb.4 ahc.4 aic.4 \ ami.4 amdpm.4 amphy.4 an.4 aria.4 ast.4 atalk.4 atapiscsi.4 \ @@ -29,7 +29,7 @@ MAN= aac.4 ac97.4 addcom.4 adv.4 aha.4 ahb.4 ahc.4 aic.4 \ tp.4 tqphy.4 trm.4 tty.4 tun.4 twe.4 tx.4 txp.4 txphy.4 \ uaudio.4 ubsec.4 ucom.4 udp.4 uftdi.4 ugen.4 uhci.4 uhid.4 uhidev.4 \ uk.4 ukbd.4 \ - ukphy.4 ulpt.4 umct.4 umodem.4 ums.4 umass.4 unix.4 upl.4 \ + ukphy.4 ulpt.4 umct.4 umidi.4 umodem.4 ums.4 umass.4 unix.4 upl.4 \ uplcom.4 urio.4 \ url.4 urlphy.4 usb.4 uscanner.4 usscanner.4 uvisor.4 uyap.4 \ vga.4 vlan.4 vnd.4 vr.4 \ diff --git a/share/man/man4/umidi.4 b/share/man/man4/umidi.4 new file mode 100644 index 00000000000..0ff0d673bd7 --- /dev/null +++ b/share/man/man4/umidi.4 @@ -0,0 +1,75 @@ +.\" $OpenBSD: umidi.4,v 1.1 2002/06/11 07:56:13 nate Exp $ +.\" $NetBSD: umidi.4,v 1.4 2002/02/07 03:15:09 ross Exp $ +.\" +.\" Copyright (c) 2001 The NetBSD Foundation, Inc. +.\" 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 the NetBSD +.\" Foundation, Inc. and its contributors. +.\" 4. Neither the name of The NetBSD Foundation nor the names of its +.\" contributors may be used to endorse or promote products derived +.\" from this software without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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. +.\" +.Dd January 31, 2001 +.Dt UMIDI 4 +.Os +.Sh NAME +.Nm umidi +.Nd USB support for MIDI devices +.Sh SYNOPSIS +.Cd "umidi* at uhub?" +.Cd "midi* at umidi?" +.Sh DESCRIPTION +The +.Nm +driver supports USB MIDI devices that follow the USB MIDI standard. +It also supports the following vendor specific devices: +.Pp +.Bl -tag -width Dv -offset indent -compact +.It Tn Roland UM1 +.It Tn Yamaha UX256 +.It Tn Yamaha UX96 +.It Tn other Yamaha MIDI devices (hopefully) +.El +.Pp +The +.Nm +driver is accessible through the +.Xr midi 4 +driver. +.Sh SEE ALSO +.Xr midi 4 , +.Xr usb 4 +.Sh HISTORY +The +.Nm +driver +appeared in +.Ox 3.2 . +.Sh BUGS +The +.Nm +driver has been only tested with the vendor specific devices listed above; +not yet tested with the devices that follow the USB MIDI standard. |