d9789d4225
incorporated into the master sources, so it is unnecessary to resolve all the conflicts that would occur if we let CVS "merge" the versions.
17 lines
189 B
Bash
17 lines
189 B
Bash
#!/bin/sh -
|
|
#
|
|
|
|
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:
|
|
umask 77
|
|
for i
|
|
do
|
|
case $i in
|
|
|
|
ttyv*)
|
|
unit=`expr $i : 'ttyv\(.*\)'`
|
|
rm -f /dev/ttyv$unit
|
|
mknod /dev/ttyv$unit c 12 $unit
|
|
;;
|
|
esac
|
|
done
|