diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-04-11 18:06:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-04-11 18:06:05 +0000 |
commit | cb63b4e7a720a0f566f1592e13cc8b6ae53c9a68 (patch) | |
tree | a9f8a41a6611d88aae92c7a5760ae70451dbfe36 /etc/etc.alpha/MAKEDEV | |
parent | 0aeac4943cf3e9f30b89671cf7ea97abdf30233e (diff) |
Regen for for pty changes (62 per letter instead of just 16)
Diffstat (limited to 'etc/etc.alpha/MAKEDEV')
-rw-r--r-- | etc/etc.alpha/MAKEDEV | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/etc/etc.alpha/MAKEDEV b/etc/etc.alpha/MAKEDEV index 2ff66978932..f9aa2514257 100644 --- a/etc/etc.alpha/MAKEDEV +++ b/etc/etc.alpha/MAKEDEV @@ -3,8 +3,8 @@ # THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. # generated from: # -# OpenBSD: etc.alpha/MAKEDEV.md,v 1.23 2004/03/12 04:54:04 deraadt Exp -# OpenBSD: MAKEDEV.common,v 1.4 2004/03/12 04:54:04 deraadt Exp +# OpenBSD: etc.alpha/MAKEDEV.md,v 1.24 2004/04/11 18:05:23 millert Exp +# OpenBSD: MAKEDEV.common,v 1.6 2004/04/11 18:05:22 millert Exp # OpenBSD: MAKEDEV.mi,v 1.72 2004/02/16 18:58:53 miod Exp # OpenBSD: MAKEDEV.sub,v 1.12 2004/02/20 19:13:01 miod Exp # @@ -47,8 +47,8 @@ # ttyc* Cyclades serial ports # Pseudo terminals: # ptm pty master device -# pty* Set of 16 master pseudo terminals -# tty* Set of 16 slave pseudo terminals +# pty* Set of 62 pseudo terminals +tty_dev # Console ports: # ttyC0 Minimal wscons devices # ttyC-F* wscons display devices @@ -409,13 +409,17 @@ pty*) echo bad unit for pty in: $i continue fi - set -A tbl p q r s t u v w x y z P Q R S T - name=${tbl[$U]} + set -A letters p q r s t u v w x y z P Q R S T + set -A suffixes 0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q \ + r s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V W X \ + Y Z + + name=${letters[$U]} n=0 - while [ $n -lt 16 ] + while [ $n -lt 62 ] do - nam=$name$(hex $n) - off=$(($U*16)) + nam=$name${suffixes[$n]} + off=$(($U*62)) M tty$nam c 4 $(($off+$n)) M pty$nam c 5 $(($off+$n)) n=$(($n+1)) @@ -495,14 +499,14 @@ local) all) R ccd0 ccd1 ccd2 ccd3 vnd0 vnd1 vnd2 vnd3 sd0 sd1 sd2 sd3 sd4 R cd0 cd1 rd0 tun0 tun1 tun2 tun3 bpf0 bpf1 bpf2 bpf3 bpf4 - R bpf5 bpf6 bpf7 bpf8 bpf9 pty0 pty1 pty2 fd1 fd1B fd1C fd1D - R fd1E fd1F fd1G fd1H fd0 fd0B fd0C fd0D fd0E fd0F fd0G fd0H - R xfs0 ss0 ss1 ch0 ptm local wscons pci iop0 iop1 uall rmidi0 - R rmidi1 rmidi2 rmidi3 rmidi4 rmidi5 rmidi6 rmidi7 music0 - R speaker audio0 uk0 random lpa0 lpa1 lpa2 lpt0 lpt1 lpt2 lkm - R tty00 tty01 tty02 tty03 ttyc0 ttyc1 ttyc2 ttyc3 ttyc4 ttyc5 - R ttyc6 ttyc7 ttyB0 ttyB1 ttyB2 ttyB3 ttyB4 ttyB5 pf systrace - R wd0 wd1 wd2 wd3 raid0 raid1 raid2 raid3 std st0 st1 fd + R bpf5 bpf6 bpf7 bpf8 bpf9 pty0 fd1 fd1B fd1C fd1D fd1E fd1F + R fd1G fd1H fd0 fd0B fd0C fd0D fd0E fd0F fd0G fd0H xfs0 ss0 + R ss1 ch0 ptm local wscons pci iop0 iop1 uall rmidi0 rmidi1 + R rmidi2 rmidi3 rmidi4 rmidi5 rmidi6 rmidi7 music0 speaker + R audio0 uk0 random lpa0 lpa1 lpa2 lpt0 lpt1 lpt2 lkm tty00 + R tty01 tty02 tty03 ttyc0 ttyc1 ttyc2 ttyc3 ttyc4 ttyc5 ttyc6 + R ttyc7 ttyB0 ttyB1 ttyB2 ttyB3 ttyB4 ttyB5 pf systrace wd0 + R wd1 wd2 wd3 raid0 raid1 raid2 raid3 std st0 st1 fd ;; wd*|sd*|raid*|ccd*) |