CVS commit: [netbsd-8] src/share/man/man4

2019-12-05 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Thu Dec  5 16:57:11 UTC 2019

Modified Files:
src/share/man/man4 [netbsd-8]: rnd.4

Log Message:
Pull up following revision(s) (requested by riastradh in ticket #1467):
share/man/man4/rnd.4: revision 1.26
share/man/man4/rnd.4: revision 1.27
share/man/man4/rnd.4: revision 1.28
share/man/man4/rnd.4: revision 1.25
Update man page to reflect switch from CTR_DRBG to Hash_DRBG.
Replace slightly wrong rant by shorter and slightly less long rant.
(If X and Y in Z/2Z are independent, then so are X and X+Y.  What was
I thinking.)
Update NIST SP800-90A reference.
New sentence, new line. Use \(em.


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.24.4.1 src/share/man/man4/rnd.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/rnd.4
diff -u src/share/man/man4/rnd.4:1.24 src/share/man/man4/rnd.4:1.24.4.1
--- src/share/man/man4/rnd.4:1.24	Wed Jan 18 22:38:00 2017
+++ src/share/man/man4/rnd.4	Thu Dec  5 16:57:11 2019
@@ -1,4 +1,4 @@
-.\"	$NetBSD: rnd.4,v 1.24 2017/01/18 22:38:00 abhinav Exp $
+.\"	$NetBSD: rnd.4,v 1.24.4.1 2019/12/05 16:57:11 bouyer Exp $
 .\"
 .\" Copyright (c) 2014 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -27,7 +27,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd November 16, 2014
+.Dd September 3, 2019
 .Dt RND 4
 .Os
 .Sh NAME
@@ -187,8 +187,8 @@ quantum computers.
 Systems with nonvolatile storage should store a secret from
 .Pa /dev/urandom
 on disk during installation or shutdown, and feed it back during boot,
-so that the work the operating system has done to gather entropy --
-including the work its operator may have done to flip a coin! -- can be
+so that the work the operating system has done to gather entropy \(em
+including the work its operator may have done to flip a coin! \(em can be
 saved from one boot to the next, and so that newly installed systems
 are not vulnerable to generating cryptographic keys predictably.
 .Pp
@@ -205,7 +205,7 @@ in
 which is enabled by default; see
 .Xr rc.conf 5 .
 .Sh LIMITATIONS
-Some people worry about recovery from state compromise -- that is,
+Some people worry about recovery from state compromise \(em that is,
 ensuring that even if an attacker sees the entire state of the
 operating system, then the attacker will be unable to predict any new
 future outputs as long as the operating system gathers fresh entropy
@@ -404,9 +404,9 @@ When a user process opens
 or
 .Pa /dev/urandom
 and first reads from it, the kernel draws from the entropy pool to seed
-a cryptographic pseudorandom number generator, the NIST CTR_DRBG
-(counter-mode deterministic random bit generator) with AES-128 as the
-block cipher, and uses that to generate data.
+a cryptographic pseudorandom number generator, the NIST Hash_DRBG
+(hash-based deterministic random bit generator) with SHA-256 as the
+hash function, and uses that to generate data.
 .Pp
 To draw a seed from the entropy pool, the kernel
 .Bl -bullet -offset abcd -compact
@@ -489,10 +489,10 @@ Never blocks.
 .%A Elaine Barker
 .%A John Kelsey
 .%T Recommendation for Random Number Generation Using Deterministic Random Bit Generators
-.%D January 2012
+.%D June 2015
 .%I National Institute of Standards and Technology
-.%O NIST Special Publication 800-90A
-.%U http://csrc.nist.gov/publications/nistpubs/800-90A/SP800-90A.pdf
+.%O NIST Special Publication 800-90A, Revision 1
+.%U https://csrc.nist.gov/publications/detail/sp/800-90a/rev-1/final
 .Re
 .Rs
 .%A Daniel J. Bernstein
@@ -551,59 +551,33 @@ Unfortunately, no amount of software eng
 .Sh ENTROPY ACCOUNTING
 The entropy accounting described here is not grounded in any
 cryptography theory.
-It is done because it was always done, and because it gives people a
-warm fuzzy feeling about information theory.
+.Sq Entropy estimation
+doesn't mean much: the kernel hypothesizes an extremely simple-minded
+parametric model for all entropy sources which bears little relation to
+any physical processes, implicitly fits parameters from data, and
+accounts for the entropy of the fitted model.
 .Pp
-The folklore is that every
-.Fa n Ns -bit
-output of
-.Fa /dev/random
-is not merely indistinguishable from uniform random to a
-computationally bounded attacker, but information-theoretically is
-independent and has
-.Fa n
-bits of entropy even to a computationally
-.Em unbounded
-attacker -- that is, an attacker who can recover AES keys, compute
-SHA-1 preimages, etc.
-This property is not provided, nor was it ever provided in any
-implementation of
-.Fa /dev/random
-known to the author.
-.Pp
-This property would require that, after each read, the system discard
-all measurements from hardware in the entropy pool and begin anew.
-All work done to make the system unpredictable would be t

CVS commit: [netbsd-8] src/share/man/man4

2018-10-31 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Oct 31 09:26:52 UTC 2018

Modified Files:
src/share/man/man4 [netbsd-8]: Makefile
Added Files:
src/share/man/man4 [netbsd-8]: bwfm.4

Log Message:
Pull up the following, requested by maya in ticket #1072:

distrib/sets/lists/man/mi   (patch)
share/man/man4/bwfm.4   1.3 (patch)

Add bwfm man page.


To generate a diff of this commit:
cvs rdiff -u -r1.637.2.2 -r1.637.2.3 src/share/man/man4/Makefile
cvs rdiff -u -r0 -r1.3.4.2 src/share/man/man4/bwfm.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/Makefile
diff -u src/share/man/man4/Makefile:1.637.2.2 src/share/man/man4/Makefile:1.637.2.3
--- src/share/man/man4/Makefile:1.637.2.2	Sat May 12 10:35:45 2018
+++ src/share/man/man4/Makefile	Wed Oct 31 09:26:51 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.637.2.2 2018/05/12 10:35:45 martin Exp $
+#	$NetBSD: Makefile,v 1.637.2.3 2018/10/31 09:26:51 martin Exp $
 #	@(#)Makefile	8.1 (Berkeley) 6/18/93
 
 MAN=	aac.4 ac97.4 acardide.4 aceride.4 acphy.4 \
@@ -15,7 +15,7 @@ MAN=	aac.4 ac97.4 acardide.4 aceride.4 a
 	bio.4 bktr.4 bluetooth.4 bmtphy.4 bpf.4 bpfjit.4 \
 	brgphy.4 bridge.4 bthidev.4 bthub.4 btkbd.4 \
 	btmagic.4 btms.4 btsco.4 btuart.4 \
-	bwi.4 \
+	bwfm.4 bwi.4 \
 	cac.4 can.4 canloop.4 cardbus.4 carp.4 cas.4 ccd.4 cd.4 \
 	cec.4 cgd.4 cfb.4 ch.4 chipsfb.4 ciphy.4 ciss.4 clcs.4 clct.4 \
 	clockctl.4 cmdide.4 cmpci.4 cms.4 cnw.4 \

Added files:

Index: src/share/man/man4/bwfm.4
diff -u /dev/null src/share/man/man4/bwfm.4:1.3.4.2
--- /dev/null	Wed Oct 31 09:26:52 2018
+++ src/share/man/man4/bwfm.4	Wed Oct 31 09:26:51 2018
@@ -0,0 +1,58 @@
+.\" $NetBSD: bwfm.4,v 1.3.4.2 2018/10/31 09:26:51 martin Exp $
+.\"
+.\" Copyright (c) 2017 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.
+.\"
+.\" 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 May 5, 2018
+.Dt BWFM 4
+.Os
+.Sh NAME
+.Nm bwfm
+.Nd Broadcom and Cypress wireless network driver
+.Sh SYNOPSIS
+.Cd "bwfm* at uhub? port ?"
+.Cd "bwfm* at pci? dev ? function ?"
+.Sh DESCRIPTION
+The
+.Nm
+driver provides support for Broadcom and Cypress FullMAC network adapters.
+.Sh SEE ALSO
+.Xr bwi 4 ,
+.\".Xr ifconfig 4 ,
+.Xr ifmedia 4 ,
+.Xr usb 4 ,
+.Xr ifconfig.if 5 ,
+.Xr wpa_supplicant 8
+.Sh AUTHORS
+.An -nosplit
+The
+.Nm
+driver was written by
+.An Patrick Wildt
+.Aq Mt patr...@blueri.se
+and ported to
+.Nx
+by
+.An Jared D. McNeill
+.Aq Mt jmcne...@netbsd.org .



CVS commit: [netbsd-8] src/share/man/man4

2018-09-05 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Sep  5 08:35:55 UTC 2018

Modified Files:
src/share/man/man4 [netbsd-8]: acphy.4 acpicpu.4 adb.4 atppc.4 axe.4
az.4 bktr.4 cgd.4

Log Message:
Pull up following revision(s) (requested by sevan in ticket #1004):

share/man/man4/az.4: revision 1.7
share/man/man4/axe.4: revision 1.14
share/man/man4/cgd.4: revision 1.22
share/man/man4/acphy.4: revision 1.4
share/man/man4/adb.4: revision 1.4
share/man/man4/bktr.4: revision 1.19
share/man/man4/atppc.4: revision 1.16
share/man/man4/acpicpu.4: revision 1.35

Add the correct PHY to SYNOPSIS

axe0 at uhub3 port 1
axe0: Apple Computer (0x5ac) Apple USB to Ethernet (0x1402), rev
2.00/0.01, addr 3
axe0: Ethernet address b8:8d:12:XX:XX:XX
ukphy0 at axe0 phy 16: OUI 0x007063, model 0x0006, rev. 1
ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto

 -

Apply Tn macro to XTS
 -
New sentence, new line.
 -
Pp before Bl
 -
Use the An macro in the AUTHORS section.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.3.92.1 src/share/man/man4/acphy.4
cvs rdiff -u -r1.34 -r1.34.34.1 src/share/man/man4/acpicpu.4
cvs rdiff -u -r1.3 -r1.3.18.1 src/share/man/man4/adb.4
cvs rdiff -u -r1.15 -r1.15.92.1 src/share/man/man4/atppc.4
cvs rdiff -u -r1.13 -r1.13.4.1 src/share/man/man4/axe.4
cvs rdiff -u -r1.6 -r1.6.92.1 src/share/man/man4/az.4
cvs rdiff -u -r1.18 -r1.18.34.1 src/share/man/man4/bktr.4
cvs rdiff -u -r1.21 -r1.21.6.1 src/share/man/man4/cgd.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/acphy.4
diff -u src/share/man/man4/acphy.4:1.3 src/share/man/man4/acphy.4:1.3.92.1
--- src/share/man/man4/acphy.4:1.3	Fri Jan 17 06:23:53 2003
+++ src/share/man/man4/acphy.4	Wed Sep  5 08:35:55 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: acphy.4,v 1.3 2003/01/17 06:23:53 gendalia Exp $
+.\"	$NetBSD: acphy.4,v 1.3.92.1 2018/09/05 08:35:55 martin Exp $
 .\"
 .\" Copyright 2001 Wasabi Systems, Inc.
 .\" All rights reserved.
@@ -33,7 +33,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd August 24, 2001
+.Dd August 31, 2018
 .Dt ACPHY 4
 .Os
 .Sh NAME
@@ -45,9 +45,9 @@
 The
 .Nm
 driver supports the Altima AC101, AC101L and AMD Am79c874 NetPHY-1LP
-10/100 Ethernet PHYs.  These PHYs are often found on low-power
-Ethernet interfaces, such as MiniPCI interfaces found in
-laptops and embedded systems.
+10/100 Ethernet PHYs.
+These PHYs are often found on low-power Ethernet interfaces, such as MiniPCI
+interfaces found in laptops and embedded systems.
 .Pp
 The AMD 79c874 is a work-alike (most likely an OEM of the core) of the
 Altima part.

Index: src/share/man/man4/acpicpu.4
diff -u src/share/man/man4/acpicpu.4:1.34 src/share/man/man4/acpicpu.4:1.34.34.1
--- src/share/man/man4/acpicpu.4:1.34	Tue Aug  9 07:18:54 2011
+++ src/share/man/man4/acpicpu.4	Wed Sep  5 08:35:55 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: acpicpu.4,v 1.34 2011/08/09 07:18:54 jruoho Exp $
+.\" $NetBSD: acpicpu.4,v 1.34.34.1 2018/09/05 08:35:55 martin Exp $
 .\"
 .\" Copyright (c) 2010 Jukka Ruohonen 
 .\" All rights reserved.
@@ -24,7 +24,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd August 6, 2011
+.Dd August 31, 2018
 .Dt ACPICPU 4
 .Os
 .Sh NAME
@@ -69,7 +69,6 @@ The following C-states are typically ava
 Additional processor or vendor specific
 states (C4, ..., Cn) are handled internally by
 .Nm .
-.Pp
 .Bl -tag -width C1 -offset indent
 .It Dv C0
 This is the normal state of a processor; the

Index: src/share/man/man4/adb.4
diff -u src/share/man/man4/adb.4:1.3 src/share/man/man4/adb.4:1.3.18.1
--- src/share/man/man4/adb.4:1.3	Tue Aug  6 17:32:30 2013
+++ src/share/man/man4/adb.4	Wed Sep  5 08:35:55 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: adb.4,v 1.3 2013/08/06 17:32:30 snj Exp $
+.\"	$NetBSD: adb.4,v 1.3.18.1 2018/09/05 08:35:55 martin Exp $
 .\"
 .\" Copyright (c) 2003 Alex Zepeda 
 .\" Copyright (c) 1997 Colin Wood
@@ -30,7 +30,7 @@
 .\" (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 September 21, 2003
+.Dd August 31, 2018
 .Dt ADB 4
 .Os
 .Sh NAME
@@ -210,14 +210,17 @@ interface first appeared in
 .Nx 0.9 .
 It has been under development ever since.
 .Sh AUTHORS
-Bradley A. Grantham wrote the original
+.An -nosplit
+.An "Bradley A. Grantham"
+wrote the original
 .Nm
 driver, including the
 .Tn MRG
 support.
 The hardware direct interface was written by
-John P. Wittkowski.
-The PowerManager interface was written by Takashi Hamada.
+.An "John P. Wittkowski" .
+The PowerManager interface was written by
+.An "Takashi Hamada" .
 .Sh BUGS
 .Bl -bullet
 .It

Index: src/share/man/man4/atppc.4
diff -u src/share/man/man4/atpp

CVS commit: [netbsd-8] src/share/man/man4

2018-08-07 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Aug  7 13:36:41 UTC 2018

Modified Files:
src/share/man/man4 [netbsd-8]: ifmedia.4

Log Message:
Pull up following revision(s) (requested by msaitoh in ticket #962):

share/man/man4/ifmedia.4: revision 1.30

Add some missing IFM_* entries.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.29.40.1 src/share/man/man4/ifmedia.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/ifmedia.4
diff -u src/share/man/man4/ifmedia.4:1.29 src/share/man/man4/ifmedia.4:1.29.40.1
--- src/share/man/man4/ifmedia.4:1.29	Fri Apr 10 17:07:15 2009
+++ src/share/man/man4/ifmedia.4	Tue Aug  7 13:36:41 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: ifmedia.4,v 1.29 2009/04/10 17:07:15 joerg Exp $
+.\"	$NetBSD: ifmedia.4,v 1.29.40.1 2018/08/07 13:36:41 martin Exp $
 .\"
 .\" Copyright (c) 1998, 1999, 2000, 2001, 2002, 2003, 2004
 .\"	The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd October 7, 2006
+.Dd August 3, 2018
 .Dt IFMEDIA 4
 .Os
 .Sh NAME
@@ -134,8 +134,12 @@ connector.  [100baseT4, 100T4]
 1000BASE-SX, 1Gb/s over multi-mode fiber optic cables. (short waves)
 [1000baseSX, 1000SX]
 .It Dv IFM_1000_LX
-1000BASE-LX, 1Gb/s over single-mode fiber optic cables. (long waves)
+1000BASE-LX, 1Gb/s over single-mode fiber or multi-mode fiber optic cables.
+(long waves)
 [1000baseLX, 1000LX]
+.It Dv IFM_1000_BX10
+1000BASE-BX10, 1Gb/s over bidirectional fiber optic cables. (long waves)
+[1000BASE-BX10]
 .It Dv IFM_1000_CX
 1000BASE-CX, 1Gb/s over shielded twisted pair. (twinax)
 [1000baseCX, 1000CX]
@@ -143,8 +147,37 @@ connector.  [100baseT4, 100T4]
 1000BASE-T, 1Gb/s over category 5 unshielded twisted pair, 802.3ab, RJ45
 connector.
 [1000baseT, 1000T]
+.It Dv IFM_1000_KX
+1000BASE-KX, 1Gb/s backplane.
+[1000BASE-KX, 1000baseKX]
+.It Dv IFM_2500_SX
+2500BASE-SX, 2.5Gb/s over multi-mode fiber optic cables.
+[2500baseSX, 2500SX]
+.It Dv IFM_2500_T
+2.5GBASE-T, 2.5Gb/s over category 5e.
+[2.5GBASE-T, 2500baseT]
+.It Dv IFM_2500_KX
+2500BASE-KX, 2.5Gb/s backplane.
+[2500BASE-KX, 2500baseKX]
+.It Dv IFM_5000_T
+5GBASE-T, 5Gb/s over category 6.
+[5GBASE-T, 5GbaseT]
+.It Dv IFM_10G_CX4
+10GBASE-CX4, 10Gb/s over XAUI 4-lane PCS and copper cables.
+[10GbaseCX4, 10GCX4, 10GBASE-CX4]
 .It Dv IFM_10G_LR
 10GBASE-LR, 10Gb/s over single-mode fiber optic cables.  [10GbaseLR, 10GLR]
+.It Dv IFM_10G_LRM
+10GBASE-LR, 10Gb/s over single-mode fiber optic cables.  [10GbaseLRM]
+.It Dv IFM_10G_SR
+10GBASE-SR, 10Gb/s over multi-mode fiber optic cables.
+[10GbaseSR, 10GSR, 10GBASE-SR]
+.It Dv IFM_10G_T
+10GBASE-T, 10Gb/s over unshielded twisted pair, RJ45 connector.
+[10Gbase-T]
+.It Dv IFM_10G_TWINAX
+SFP+ direct attach, 10Gb/s over twinaxial cable.
+[10Gbase-Twinax]
 .El
 .Pp
 The following media option is defined for Ethernet:



CVS commit: [netbsd-8] src/share/man/man4/man4.macppc

2018-03-31 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Sat Mar 31 10:32:05 UTC 2018

Modified Files:
src/share/man/man4/man4.macppc [netbsd-8]: snapper.4

Log Message:
Pull up following revision(s) (requested by sevan in ticket #674):

share/man/man4/man4.macppc/snapper.4: revision 1.5

Add email addresses to author names.

snapper(4) was enabled by default in r1.208 of GENERIC over 12 years
ago, drop the bugs section about needing more testing.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.4.4.1 src/share/man/man4/man4.macppc/snapper.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/man4.macppc/snapper.4
diff -u src/share/man/man4/man4.macppc/snapper.4:1.4 src/share/man/man4/man4.macppc/snapper.4:1.4.4.1
--- src/share/man/man4/man4.macppc/snapper.4:1.4	Fri Feb 17 22:24:47 2017
+++ src/share/man/man4/man4.macppc/snapper.4	Sat Mar 31 10:32:05 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: snapper.4,v 1.4 2017/02/17 22:24:47 christos Exp $
+.\" $NetBSD: snapper.4,v 1.4.4.1 2018/03/31 10:32:05 martin Exp $
 .\"
 .\" Copyright (c) 2006 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -24,7 +24,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd February 17, 2017
+.Dd March 30, 2018
 .Dt SNAPPER 4 macppc
 .Os
 .Sh NAME
@@ -63,8 +63,6 @@ device driver appeared in
 The
 .Nm
 driver was written by
-.An Tsubai Masanari
+.An Tsubai Masanari Aq Mt tsu...@netbsd.org
 with modifications by
-.An Jared D. McNeill .
-.Sh BUGS
-This driver needs more testing.
+.An Jared D. McNeill Aq Mt jmcne...@netbsd.org .



CVS commit: [netbsd-8] src/share/man/man4

2018-03-13 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Mar 13 11:15:15 UTC 2018

Modified Files:
src/share/man/man4 [netbsd-8]: altq.4

Log Message:
Pull up following revision(s) (requested by sevan in ticket #619):
share/man/man4/altq.4: revision 1.3
Update URL for the cited paper


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.2.34.1 src/share/man/man4/altq.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/altq.4
diff -u src/share/man/man4/altq.4:1.2 src/share/man/man4/altq.4:1.2.34.1
--- src/share/man/man4/altq.4:1.2	Thu Jun 23 07:47:22 2011
+++ src/share/man/man4/altq.4	Tue Mar 13 11:15:15 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: altq.4,v 1.2 2011/06/23 07:47:22 wiz Exp $
+.\" $NetBSD: altq.4,v 1.2.34.1 2018/03/13 11:15:15 martin Exp $
 .\"
 .\" Copyright (c) 2011 Jukka Ruohonen 
 .\"
@@ -24,7 +24,7 @@
 .\" (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 June 22, 2011
+.Dd March 08, 2018
 .Dt ALTQ 4
 .Os
 .Sh NAME
@@ -77,7 +77,7 @@ are required in order to use a certain n
 .%D March, 2004
 .%C Taipei, Taiwan
 .%O Asia BSD conference
-.%U http://www.sonycsl.co.jp/~kjc/papers/fittingtheory.pdf
+.%U http://www.sonycsl.co.jp/person/kjc/papers/fittingtheory.pdf
 .Re
 .\" .Sh HISTORY
 .\"



CVS commit: [netbsd-8] src/share/man/man4

2018-02-19 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Mon Feb 19 18:52:14 UTC 2018

Modified Files:
src/share/man/man4 [netbsd-8]: gif.4

Log Message:
Pull up following revision(s) (requested by pgoyette in ticket #560):
share/man/man4/gif.4: 1.31
Add 'tunnel mode ipip' to the cisco configuration as requested in
PR kern/53037


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.30.40.1 src/share/man/man4/gif.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/gif.4
diff -u src/share/man/man4/gif.4:1.30 src/share/man/man4/gif.4:1.30.40.1
--- src/share/man/man4/gif.4:1.30	Fri Jan 15 19:23:38 2010
+++ src/share/man/man4/gif.4	Mon Feb 19 18:52:13 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: gif.4,v 1.30 2010/01/15 19:23:38 joerg Exp $
+.\"	$NetBSD: gif.4,v 1.30.40.1 2018/02/19 18:52:13 snj Exp $
 .\"	$KAME: gif.4,v 1.24 2001/02/20 12:54:01 itojun Exp $
 .\"
 .\" Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -28,7 +28,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.Dd January 15, 2009
+.Dd February 19, 2018
 .Dt GIF 4
 .Os
 .Sh NAME
@@ -185,6 +185,7 @@ On Host D (Cisco):
 ip unnumbered D   ! e.g. address from Ethernet interface
 tunnel source D   ! e.g. address from Ethernet interface
 tunnel destination A
+tunnel mode ipip
ip route C 
ip route A mask C
ip route X mask tunnelX



CVS commit: [netbsd-8] src/share/man/man4

2018-02-06 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Tue Feb  6 09:29:21 UTC 2018

Modified Files:
src/share/man/man4 [netbsd-8]: vnd.4

Log Message:
Pull up following revision(s) (requested by maya in ticket #535):
share/man/man4/vnd.4: revision 1.19
Remove outdated BUGS entry - vnd does work on sparse files.
(thanks hannken in 2011-06-29)


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.18.24.1 src/share/man/man4/vnd.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/vnd.4
diff -u src/share/man/man4/vnd.4:1.18 src/share/man/man4/vnd.4:1.18.24.1
--- src/share/man/man4/vnd.4:1.18	Sun Jul  8 22:47:41 2012
+++ src/share/man/man4/vnd.4	Tue Feb  6 09:29:21 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: vnd.4,v 1.18 2012/07/08 22:47:41 wiz Exp $
+.\"	$NetBSD: vnd.4,v 1.18.24.1 2018/02/06 09:29:21 martin Exp $
 .\"
 .\" Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -27,7 +27,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd December 18, 2009
+.Dd September 29, 2017
 .Dt VND 4
 .Os
 .Sh NAME
@@ -97,7 +97,3 @@ The compression handling is based on cod
 The
 .Nm
 driver does not work if the file does not reside in a local filesystem.
-.Pp
-The
-.Nm
-driver does not work if the file is sparse.



CVS commit: [netbsd-8] src/share/man/man4

2017-10-25 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Wed Oct 25 07:08:46 UTC 2017

Modified Files:
src/share/man/man4 [netbsd-8]: slhci.4

Log Message:
Pull up following revision(s) (requested by flxd in ticket #327):
share/man/man4/slhci.4: 1.11-1.12
Add TC-USB.
--
remove Tn, bump date for previous


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.10.20.1 src/share/man/man4/slhci.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/slhci.4
diff -u src/share/man/man4/slhci.4:1.10 src/share/man/man4/slhci.4:1.10.20.1
--- src/share/man/man4/slhci.4:1.10	Sun Apr 28 12:51:04 2013
+++ src/share/man/man4/slhci.4	Wed Oct 25 07:08:45 2017
@@ -1,4 +1,4 @@
-.\" $NetBSD: slhci.4,v 1.10 2013/04/28 12:51:04 wiz Exp $
+.\" $NetBSD: slhci.4,v 1.10.20.1 2017/10/25 07:08:45 snj Exp $
 .\"
 .\" Not (c) 2007 Matthew Orgass
 .\" This file is public domain, meaning anyone can make any use of part or all
@@ -7,7 +7,7 @@
 .\" part of a collection then use in the collection is governed by the terms of
 .\" the collection.
 .\"
-.Dd April 28, 2013
+.Dd October 14, 2017
 .Dt SLHCI 4
 .Os
 .Sh NAME
@@ -22,6 +22,10 @@
 .Ss ISA controllers
 .Cd "slhci*   at isa? port ? irq ?"
 .Cd "usb* at slhci?"
+.Ss TURBOchannel controllers
+.Cd "tcu* at tc? slot ? offset ?"
+.Cd "slhci*   at tcu?"
+.Cd "usb* at slhci?"
 .Ss x68k
 .Cd "slhci0   at intio0 addr 0xece380 intr 251"
 .Cd "slhci1   at intio0 addr 0xeceb80 intr 250"
@@ -91,19 +95,20 @@ Hardware supported by the
 driver includes:
 .Bl -item -offset indent
 .It
-.Tn Ratoc
-.Em CFU1U
+Ratoc CFU1U
+.It
+Nereid Ethernet/USB/Memory board
 .It
-.Tn Nereid
-Ethernet/USB/Memory board
+Thylacine USB Host Controller
 .It
-.Tn Thylacine
-USB Host Controller
+flxd TC-USB
 .El
 .Sh SEE ALSO
 .Xr config 1 ,
 .Xr isa 4 ,
 .Xr pcmcia 4 ,
+.Xr tc 4 ,
+.Xr tcu 4 ,
 .Xr usb 4
 .Rs
 .%T Cypress SL811HS datasheet, errata, and application note



CVS commit: [netbsd-8] src/share/man/man4

2017-10-24 Thread Soren Jacobsen
Module Name:src
Committed By:   snj
Date:   Wed Oct 25 06:54:27 UTC 2017

Modified Files:
src/share/man/man4 [netbsd-8]: u3g.4

Log Message:
Pull up following revision(s) (requested by sevan in ticket #311):
share/man/man4/u3g.4: revision 1.9
u3ginit was split out and became umodeswitch.
Update the kernel configuration declaration.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.8.18.1 src/share/man/man4/u3g.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/u3g.4
diff -u src/share/man/man4/u3g.4:1.8 src/share/man/man4/u3g.4:1.8.18.1
--- src/share/man/man4/u3g.4:1.8	Tue Mar 18 18:20:39 2014
+++ src/share/man/man4/u3g.4	Wed Oct 25 06:54:27 2017
@@ -1,4 +1,4 @@
-.\" $NetBSD: u3g.4,v 1.8 2014/03/18 18:20:39 riastradh Exp $
+.\" $NetBSD: u3g.4,v 1.8.18.1 2017/10/25 06:54:27 snj Exp $
 .\"
 .\" Copyright (c) 2008 AnyWi Technologies
 .\" All rights reserved.
@@ -17,7 +17,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd March 14, 2013
+.Dd October 8, 2017
 .Dt U3G 4
 .Os
 .Sh NAME
@@ -28,7 +28,7 @@ To compile this driver into the kernel,
 place the following lines in your
 kernel configuration file:
 .Bd -ragged -offset indent
-.Cd "u3ginit* at uhub? port ?"
+.Cd "umodeswitch* at uhub? port ?"
 .Cd "u3g* at uhub? port ?"
 .Cd "ucom* at u3g?"
 .Ed