diff options
author | 1998-02-22 23:35:37 +0000 | |
---|---|---|
committer | 1998-02-22 23:35:37 +0000 | |
commit | 2325f34afa76aa0eae6f5ae6c715d4243bd142f3 (patch) | |
tree | 7d94058d55ca4735364191a13b37c2ccacb04b0e | |
parent | This has been in my tree for a *very* long time. cua devices like on (diff) | |
download | wireguard-openbsd-2325f34afa76aa0eae6f5ae6c715d4243bd142f3.tar.xz wireguard-openbsd-2325f34afa76aa0eae6f5ae6c715d4243bd142f3.zip |
Make cua device instead of ttym
-rw-r--r-- | etc/etc.amiga/MAKEDEV | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/etc.amiga/MAKEDEV b/etc/etc.amiga/MAKEDEV index c64548d04e1..fd57f6d5f2c 100644 --- a/etc/etc.amiga/MAKEDEV +++ b/etc/etc.amiga/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.32 1998/01/26 04:19:35 dgregor Exp $ +# $OpenBSD: MAKEDEV,v 1.33 1998/02/22 23:35:37 niklas Exp $ # $NetBSD: MAKEDEV,v 1.21 1996/05/19 21:03:49 veego Exp $ # # Copyright (c) 1990 The Regents of the University of California. @@ -357,10 +357,10 @@ tty0*|ttyA*) case $type in 0) case $unit in 0) - rm -f tty0${unit} ttym${unit} + rm -f tty0${unit} cua0${unit} mknod tty0${unit} c 12 0 - mknod ttym${unit} c 12 128 - chown uucp.wheel tty0${unit} ttym${unit} + mknod cua0${unit} c 12 128 + chown uucp.wheel tty0${unit} cua0${unit} ;; *) echo bad unit for tty0 in: $i |