1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Fix jkh typo in VTY rule.

PR:		5411
Submitted by:	Brian Tao <taob@netcom.ca>
This commit is contained in:
Jordan K. Hubbard 1998-01-02 22:16:15 +00:00
parent d073c22061
commit 5c986ed210
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32197
2 changed files with 4 additions and 4 deletions

View File

@ -106,7 +106,7 @@
# perfmon CPU performance-monitoring counters
# pci PCI configuration-space access from user mode
#
# $Id: MAKEDEV,v 1.145 1997/12/29 00:10:20 jkh Exp $
# $Id: MAKEDEV,v 1.146 1997/12/29 09:45:23 jkh Exp $
#
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH
@ -696,7 +696,7 @@ vty*)
units=`expr $i : 'vty\(.*\)'`
eval `echo ${chr} ${units} | awk ' { c=$1; n=$2 } END {
for (i = 0; i < n; i++)
printf("mknod ttyv%01x c %d %d;", i, i, c); }'`
printf("mknod ttyv%01x c %d %d;", i, c, i); }'`
ln -fs ttyv0 vga # XXX X still needs this pccons relic
;;

View File

@ -106,7 +106,7 @@
# perfmon CPU performance-monitoring counters
# pci PCI configuration-space access from user mode
#
# $Id: MAKEDEV,v 1.145 1997/12/29 00:10:20 jkh Exp $
# $Id: MAKEDEV,v 1.146 1997/12/29 09:45:23 jkh Exp $
#
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH
@ -696,7 +696,7 @@ vty*)
units=`expr $i : 'vty\(.*\)'`
eval `echo ${chr} ${units} | awk ' { c=$1; n=$2 } END {
for (i = 0; i < n; i++)
printf("mknod ttyv%01x c %d %d;", i, i, c); }'`
printf("mknod ttyv%01x c %d %d;", i, c, i); }'`
ln -fs ttyv0 vga # XXX X still needs this pccons relic
;;