diff options
author | Miles Bader <miles@gnu.org> | 1997-10-28 18:34:57 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-10-28 18:34:57 +0000 |
commit | 01641af9286300822a372fb97cf520fd8e140e24 (patch) | |
tree | ca01fa5a1f28bbfbe8faa6f1f8095f0dee5ac9d8 /sutils | |
parent | 91a291b442f726d4ff2b5b071eda699fa34f9478 (diff) |
(mkdev):
Support 256 ptys.
Diffstat (limited to 'sutils')
-rw-r--r-- | sutils/MAKEDEV.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh index 0ae7f834..cd9e07b9 100644 --- a/sutils/MAKEDEV.sh +++ b/sutils/MAKEDEV.sh @@ -109,7 +109,7 @@ function mkdev { st $I root 666 /hurd/storeio time ;; # ptys - [pt]ty[pqPQ]?) + [pt]ty[pqrstuvwxyzPQRST]?) # Make one pty, both the master and slave halves local id="${B:3}" local dir="`dirname $I`" @@ -125,7 +125,7 @@ function mkdev { st $dir/pty$id root 640 /hurd/term $dd/pty$id pty-master $dd/tty$id st $dir/tty$id root 640 /hurd/term $dd/tty$id pty-slave $dd/pty$id ;; - [pt]ty[pqPQ]) + [pt]ty[pqrstuvwxyzPQRST]) # Make a bunch of ptys mkdev ${I}0 ${I}1 ${I}2 ${I}3 ${I}4 ${I}5 ${I}6 ${I}7 mkdev ${I}8 ${I}9 ${I}a ${I}b ${I}c ${I}d ${I}e ${I}f |