Source-Changes-HG archive

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

[src/trunk]: src/etc don't bother creating /dev/io on archs which don't suppo...



details:   https://anonhg.NetBSD.org/src/rev/4c731471c33c
branches:  trunk
changeset: 538638:4c731471c33c
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Wed Oct 23 22:56:29 2002 +0000

description:
don't bother creating /dev/io on archs which don't support it

diffstat:

 etc/etc.bebox/MAKEDEV     |  3 +--
 etc/etc.dreamcast/MAKEDEV |  3 +--
 etc/etc.evbsh3/MAKEDEV    |  3 +--
 etc/etc.evbsh5/MAKEDEV    |  3 +--
 etc/etc.mmeye/MAKEDEV     |  3 +--
 etc/etc.mvmeppc/MAKEDEV   |  3 +--
 etc/etc.pmppc/MAKEDEV     |  3 +--
 etc/etc.prep/MAKEDEV      |  3 +--
 etc/etc.sandpoint/MAKEDEV |  3 +--
 etc/etc.walnut/MAKEDEV    |  3 +--
 etc/etc.x86_64/MAKEDEV    |  3 +--
 11 files changed, 11 insertions(+), 22 deletions(-)

diffs (209 lines):

diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.bebox/MAKEDEV
--- a/etc/etc.bebox/MAKEDEV     Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.bebox/MAKEDEV     Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.36 2002/10/21 04:14:51 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.37 2002/10/23 22:56:29 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -169,7 +169,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 7 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.dreamcast/MAKEDEV
--- a/etc/etc.dreamcast/MAKEDEV Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.dreamcast/MAKEDEV Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.27 2002/10/21 04:14:52 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.28 2002/10/23 22:56:30 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -147,7 +147,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 7 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.evbsh3/MAKEDEV
--- a/etc/etc.evbsh3/MAKEDEV    Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.evbsh3/MAKEDEV    Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.21 2002/10/21 04:14:52 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.22 2002/10/23 22:56:30 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -125,7 +125,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod tty               c 1 0   ; chmod 666 tty
        mknod klog              c 7 0   ; chmod 600 klog
        mknod stdin             c 22 0  ; chmod 666 stdin
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.evbsh5/MAKEDEV
--- a/etc/etc.evbsh5/MAKEDEV    Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.evbsh5/MAKEDEV    Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.4 2002/10/21 04:14:52 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.5 2002/10/23 22:56:30 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -123,7 +123,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod tty               c 1 0   ; chmod 666 tty
        mknod klog              c 7 0   ; chmod 600 klog
        mknod stdin             c 22 0  ; chmod 666 stdin
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.mmeye/MAKEDEV
--- a/etc/etc.mmeye/MAKEDEV     Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.mmeye/MAKEDEV     Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.27 2002/10/21 04:14:56 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.28 2002/10/23 22:56:30 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -137,7 +137,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 7 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.mvmeppc/MAKEDEV
--- a/etc/etc.mvmeppc/MAKEDEV   Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.mvmeppc/MAKEDEV   Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.10 2002/10/21 04:14:56 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.11 2002/10/23 22:56:31 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -166,7 +166,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 7 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.pmppc/MAKEDEV
--- a/etc/etc.pmppc/MAKEDEV     Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.pmppc/MAKEDEV     Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.7 2002/10/21 04:15:00 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.8 2002/10/23 22:56:31 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -162,7 +162,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 7 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.prep/MAKEDEV
--- a/etc/etc.prep/MAKEDEV      Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.prep/MAKEDEV      Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.30 2002/10/21 04:15:00 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.31 2002/10/23 22:56:31 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -166,7 +166,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 7 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.sandpoint/MAKEDEV
--- a/etc/etc.sandpoint/MAKEDEV Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.sandpoint/MAKEDEV Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.26 2002/10/21 04:15:00 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.27 2002/10/23 22:56:31 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -160,7 +160,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 7 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.walnut/MAKEDEV
--- a/etc/etc.walnut/MAKEDEV    Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.walnut/MAKEDEV    Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.29 2002/10/21 04:15:03 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.30 2002/10/23 22:56:32 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -147,7 +147,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 5 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr
diff -r 45e4d6b249f3 -r 4c731471c33c etc/etc.x86_64/MAKEDEV
--- a/etc/etc.x86_64/MAKEDEV    Wed Oct 23 22:38:10 2002 +0000
+++ b/etc/etc.x86_64/MAKEDEV    Wed Oct 23 22:56:29 2002 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh -
 #
-#      $NetBSD: MAKEDEV,v 1.5 2002/10/21 04:15:03 lukem Exp $
+#      $NetBSD: MAKEDEV,v 1.6 2002/10/23 22:56:32 jdolecek Exp $
 #
 # Copyright (c) 1990 The Regents of the University of California.
 # All rights reserved.
@@ -238,7 +238,6 @@
        mknod mem               c 2 0   ; chmod 640 mem ; chgrp kmem mem
        mknod null              c 2 2   ; chmod 666 null
        mknod zero              c 2 12  ; chmod 666 zero
-       mknod io                c 2 14  ; chmod 640 io ; chgrp kmem io
        mknod klog              c 7 0   ; chmod 600 klog
        if $nofdesc; then
                rm -f tty stdin stdout stderr



Home | Main Index | Thread Index | Old Index