diff options
author | 2006-07-24 22:59:54 +0000 | |
---|---|---|
committer | 2006-07-24 22:59:54 +0000 | |
commit | bb5344593884bb28c762a1c52a238e0afee2e5e2 (patch) | |
tree | 9ce3c7db566dc6730052fd2769843175b17d9ab9 | |
parent | wsdisplay nodes (diff) | |
download | wireguard-openbsd-bb5344593884bb28c762a1c52a238e0afee2e5e2.tar.xz wireguard-openbsd-bb5344593884bb28c762a1c52a238e0afee2e5e2.zip |
regen
-rw-r--r-- | etc/etc.vax/MAKEDEV | 27 | ||||
-rw-r--r-- | share/man/man8/man8.vax/MAKEDEV.8 | 18 |
2 files changed, 39 insertions, 6 deletions
diff --git a/etc/etc.vax/MAKEDEV b/etc/etc.vax/MAKEDEV index c5a63a392f7..4163592c969 100644 --- a/etc/etc.vax/MAKEDEV +++ b/etc/etc.vax/MAKEDEV @@ -3,8 +3,8 @@ # THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. # generated from: # -# OpenBSD: etc.vax/MAKEDEV.md,v 1.21 2005/08/01 22:22:14 deraadt Exp -# OpenBSD: MAKEDEV.common,v 1.23 2005/12/27 19:02:42 miod Exp +# OpenBSD: etc.vax/MAKEDEV.md,v 1.23 2006/07/24 22:59:22 miod Exp +# OpenBSD: MAKEDEV.common,v 1.28 2006/06/11 10:58:57 mk Exp # OpenBSD: MAKEDEV.mi,v 1.77 2005/10/06 06:43:19 otto Exp # OpenBSD: MAKEDEV.sub,v 1.14 2005/02/07 06:14:18 david Exp # @@ -65,6 +65,9 @@ # ptm pty master device # pty* Set of 62 master pseudo terminals # tty* Set of 62 slave pseudo terminals +# Console ports: +# wscons Minimal wscons devices +# ttyC-F* wscons display devices # Special purpose devices: # bpf* Berkeley Packet Filter # fd fd/* nodes @@ -322,6 +325,26 @@ bpf*) M bpf$U c 56 $U 600 ;; +tty[C-F]*) + U=${i##tty[C-F]} + case $i in + ttyC*) n=C m=0;; + ttyD*) n=D m=256;; + ttyE*) n=E m=512;; + ttyF*) n=F m=768;; + esac + case $U in + [0-9a-f]) M tty$n$U c 68 $((16#$U+$m)) 600;; + cfg) M tty${n}cfg c 68 $((255+$m)) 600;; + *) echo bad unit $U for $i; exit 1;; + esac + ;; + +wscons) + R ttyCcfg ttyC0 ttyC1 ttyC2 ttyC3 ttyC4 ttyC5 ttyC6 ttyC7 + R ttyC8 ttyC9 ttyCa ttyCb + ;; + pty*) if [ $U -gt 15 ]; then echo bad unit for pty in: $i diff --git a/share/man/man8/man8.vax/MAKEDEV.8 b/share/man/man8/man8.vax/MAKEDEV.8 index afa5a417374..88a7334e5bb 100644 --- a/share/man/man8/man8.vax/MAKEDEV.8 +++ b/share/man/man8/man8.vax/MAKEDEV.8 @@ -1,10 +1,10 @@ -.\" $OpenBSD: MAKEDEV.8,v 1.34 2006/03/15 02:21:33 deraadt Exp $ +.\" $OpenBSD: MAKEDEV.8,v 1.35 2006/07/24 22:59:56 miod Exp $ .\" .\" THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. .\" generated from: .\" -.\" OpenBSD: etc.vax/MAKEDEV.md,v 1.21 2005/08/01 22:22:14 deraadt Exp -.\" OpenBSD: MAKEDEV.common,v 1.23 2005/12/27 19:02:42 miod Exp +.\" OpenBSD: etc.vax/MAKEDEV.md,v 1.23 2006/07/24 22:59:22 miod Exp +.\" OpenBSD: MAKEDEV.common,v 1.28 2006/06/11 10:58:57 mk Exp .\" OpenBSD: MAKEDEV.man,v 1.3 2004/03/12 18:12:12 miod Exp .\" OpenBSD: MAKEDEV.mansub,v 1.2 2004/02/20 19:13:01 miod Exp .\" @@ -23,7 +23,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, 2006 +.Dd July 24, 2006 .Dt MAKEDEV 8 vax .Os .Sh NAME @@ -187,6 +187,16 @@ Set of 62 slave pseudo terminals, see .Xr tty 4 . .El .Pp +.Sy Console ports +.Bl -tag -width tenletters -compact +.It Ar wscons +Minimal wscons devices, see +.Xr wscons 4 . +.It Ar ttyC-F* +wscons display devices, see +.Xr wsdisplay 4 . +.El +.Pp .Sy Special purpose devices .Bl -tag -width tenletters -compact .It Ar bpf* |