diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-02-22 23:35:38 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-02-22 23:35:38 +0000 |
commit | faf3f4babfc8f3e4cb2eeb92d5bfb4c15726694c (patch) | |
tree | 46905aafbe301c8a69110a91681f12c60028d101 | |
parent | a551e5b89bc837de63bc0e18306139b08ba113fe (diff) |
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 |