Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/etc/etc.arm32 Pull up revision 1.55 (requested by chris):



details:   https://anonhg.NetBSD.org/src/rev/c9cfb8970b77
branches:  netbsd-1-5
changeset: 491884:c9cfb8970b77
user:      he <he%NetBSD.org@localhost>
date:      Mon Jun 11 19:24:47 2001 +0000

description:
Pull up revision 1.55 (requested by chris):
  Add support for fcom.  Fixes PR#11076.

diffstat:

 etc/etc.arm32/MAKEDEV |  11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diffs (27 lines):

diff -r cfeb68730062 -r c9cfb8970b77 etc/etc.arm32/MAKEDEV
--- a/etc/etc.arm32/MAKEDEV     Mon Jun 11 19:17:03 2001 +0000
+++ b/etc/etc.arm32/MAKEDEV     Mon Jun 11 19:24:47 2001 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.46.4.1 2000/08/11 20:43:24 mason Exp $
+#      $NetBSD: MAKEDEV,v 1.46.4.2 2001/06/11 19:24:47 he Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -300,6 +300,15 @@
        chown uucp.wheel tty0$unit dty0$unit
        ;;
 
+fcom*)
+       unit=${i#fcom}
+       fcom=fcom$unit
+       rm -f $fcom
+       mknod $fcom c 54 $unit
+       chown uucp.wheel $fcom
+       chmod 600 $fcom
+       ;;
+
 pty*)
        class=${i#pty}
        case $class in



Home | Main Index | Thread Index | Old Index