diff options
author | Yojiro Uo <yuo@cvs.openbsd.org> | 2013-10-07 05:56:59 +0000 |
---|---|---|
committer | Yojiro Uo <yuo@cvs.openbsd.org> | 2013-10-07 05:56:59 +0000 |
commit | fba198c22766ff64e0e024eef75b1ebfa823cd5f (patch) | |
tree | d963cb60178af7859b5776ced306a4518b61ed8c /share/man | |
parent | 5d848bf8e265aaf3e35754ab67fcee85e6d92e09 (diff) |
first manpage for axen(4)
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/axen.4 | 80 |
2 files changed, 82 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index f53572d222b..850c92ebdd9 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.556 2013/09/06 08:39:39 mpi Exp $ +# $OpenBSD: Makefile,v 1.557 2013/10/07 05:56:58 yuo Exp $ MAN= aac.4 ac97.4 acphy.4 \ acpi.4 acpiac.4 acpiasus.4 acpibat.4 acpibtn.4 acpicpu.4 acpidock.4 \ @@ -12,7 +12,7 @@ MAN= aac.4 ac97.4 acphy.4 \ ams.4 an.4 andl.4 aps.4 arc.4 arcofi.4 art.4 \ asbtm.4 ast.4 atapiscsi.4 atphy.4 ath.4 athn.4 atu.4 atw.4 \ auacer.4 audio.4 \ - aue.4 auglx.4 auich.4 auixp.4 autri.4 auvia.4 axe.4 az.4 azalia.4 \ + aue.4 auglx.4 auich.4 auixp.4 autri.4 auvia.4 axe.4 axen.4 az.4 azalia.4 \ bce.4 berkwdt.4 bge.4 bha.4 bio.4 bktr.4 bluetooth.4 bmtphy.4 bnx.4 \ boca.4 bpf.4 brgphy.4 bridge.4 btkbd.4 btms.4 btsco.4 bwi.4 \ cac.4 cas.4 cardbus.4 carp.4 cd.4 cdce.4 cdcef.4 che.4 cfxga.4 \ diff --git a/share/man/man4/axen.4 b/share/man/man4/axen.4 new file mode 100644 index 00000000000..2a8315f7790 --- /dev/null +++ b/share/man/man4/axen.4 @@ -0,0 +1,80 @@ +.\" $OpenBSD: axen.4,v 1.1 2013/10/07 05:56:58 yuo Exp $ +.\" +.\" Copyright (c) 2013 Yojiro UO <yuo@nui.org> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd $Mdocdate: October 7 2013 $ +.Dt AXEN 4 +.Os +.Sh NAME +.Nm axen +.Nd ASIX Electronics AX88178a/AX88179 10/100/Gigabit USB Ethernet device +.Sh SYNOPSIS +.Cd "axen* at uhub?" +.Cd "rgephy* at mii?" +.Sh DESCRIPTION +The +.Nm +driver provides support for USB Ethernet adapters based on the ASIX +Electronics AX88178a and AX88779 USB 2.0 chipsets (potentially AX88779 will +support USB 3.0 bus, but currenly no xhci suuport on OpenBSD) including the +following: +.Pp +.Bl -tag -width Ds -offset indent -compact +.It Logitec LAN-GTJU3 +.It Kurotoshiko GbE-USB3.0 +.El +.Pp +The +.Nm +driver supports the following media types: +.Bl -tag -width "autoselect" +.It autoselect +Enable autoselection of the media type and options (this is the default). +The user can manually override the autoselected mode by adding media +options to the appropriate +.Xr hostname.if 5 +file. +.It 10baseT +Set 10Mbps operation. +.It 100baseTX +Set 100Mbps (Fast Ethernet) operation. +.It 1000baseT +Set 1000Mbps (Gigabit Ethernet) operation. +.El +.Pp +For more information on configuring this device, see +.Xr ifconfig 8 . +.Sh DIAGNOSTICS +.Sh SEE ALSO +.Xr arp 4 , +.Xr rgephy 4 , +.Xr ifmedia 4 , +.Xr intro 4 , +.Xr netintro 4 , +.Xr usb 4 , +.Xr hostname.if 5 , +.Xr ifconfig 8 +.Re +.Sh HISTORY +The +.Nm +device driver first appeared in +.Ox 5.4 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Yojiro UO <yuo@nui.org> |