Source-Changes-HG archive

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

[src/trunk]: src/etc/etc.arm32 Checking support for fcom to arm32 MAKEDEV, fi...



details:   https://anonhg.NetBSD.org/src/rev/a85ffa2c8d4b
branches:  trunk
changeset: 511008:a85ffa2c8d4b
user:      chris <chris%NetBSD.org@localhost>
date:      Sun Jun 10 22:07:23 2001 +0000

description:
Checking support for fcom to arm32 MAKEDEV, fixes pr 11076.

diffstat:

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

diffs (27 lines):

diff -r 2504f56e232f -r a85ffa2c8d4b etc/etc.arm32/MAKEDEV
--- a/etc/etc.arm32/MAKEDEV     Sun Jun 10 22:05:44 2001 +0000
+++ b/etc/etc.arm32/MAKEDEV     Sun Jun 10 22:07:23 2001 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.54 2001/06/10 22:05:44 chris Exp $
+#      $NetBSD: MAKEDEV,v 1.55 2001/06/10 22:07:23 chris Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -334,6 +334,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