summaryrefslogtreecommitdiff
path: root/etc/etc.hppa/MAKEDEV
diff options
context:
space:
mode:
Diffstat (limited to 'etc/etc.hppa/MAKEDEV')
-rw-r--r--etc/etc.hppa/MAKEDEV37
1 files changed, 24 insertions, 13 deletions
diff --git a/etc/etc.hppa/MAKEDEV b/etc/etc.hppa/MAKEDEV
index 90539c2a0b8..00ec4a759f9 100644
--- a/etc/etc.hppa/MAKEDEV
+++ b/etc/etc.hppa/MAKEDEV
@@ -4,7 +4,7 @@
# generated from:
#
# OpenBSD: etc.hppa/MAKEDEV.md,v 1.15 2003/08/07 09:19:14 mickey Exp
-# OpenBSD: MAKEDEV.mi,v 1.61 2003/10/11 03:32:15 tedu Exp
+# OpenBSD: MAKEDEV.mi,v 1.62 2003/10/14 17:58:23 todd Exp
# OpenBSD: MAKEDEV.sub,v 1.8 2003/06/18 18:08:59 todd Exp
#
#
@@ -37,7 +37,7 @@
# vnd* "file" pseudo-disks
# rd* "rd" pseudo-disks
# Terminal ports:
-# tty0* NS16x50 serial ports
+# tty[0-7][0-9a-f] NS16x50 serial ports
# Pseudo terminals:
# tty* set of 16 slave psuedo terminals
# pty* set of 16 master pseudo terminals
@@ -87,15 +87,24 @@ hex()
esac
}
-trunc()
+h2d()
{
- # XXX pdksh can't seem to deal with locally scoped variables
- # in ${foo#$bar} expansions
- arg1="$1"
- arg2="$2"
- case $3 in
- l) echo ${arg2#$arg1} ;;
- r|*) echo ${arg1#$arg2} ;;
+ local s="$1"
+ local f=${s%*[0-9a-f]} n=${s#[0-9a-f]*}
+
+ echo $(($(_h2d $f)*16+ $(_h2d $n) ))
+}
+
+_h2d()
+{
+ case $1 in
+ [0-9]) echo -n $1;;
+ a) echo -n 10;;
+ b) echo -n 11;;
+ c) echo -n 12;;
+ d) echo -n 13;;
+ e) echo -n 14;;
+ f) echo -n 15;;
esac
}
@@ -336,9 +345,11 @@ pty*)
done
;;
-tty0*)
- M tty$U c 23 $U 660 dialer uucp
- M cua$U c 23 $(($U+128)) 660 dialer uucp
+tty[0-7][0-9a-f])
+ U=${i#tty*}
+ o=$(hextod $U)
+ M tty$U c 23 $o 660 dialer uucp
+ M cua$U c 23 $(($o+128)) 660 dialer uucp
;;
rd*)