summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjdolecek <jdolecek@NetBSD.org>2002-10-23 22:56:29 +0000
committerjdolecek <jdolecek@NetBSD.org>2002-10-23 22:56:29 +0000
commite51f1ff7d370daabbdee838053adba14e70aab4e (patch)
tree952b19cd1d53a563a8a4a4636dc0c255036a591d
parent07099121c1a39efa0221ec59154af906fefde943 (diff)
don't bother creating /dev/io on archs which don't support it
-rw-r--r--etc/etc.bebox/MAKEDEV3
-rwxr-xr-xetc/etc.dreamcast/MAKEDEV3
-rwxr-xr-xetc/etc.evbsh3/MAKEDEV3
-rwxr-xr-xetc/etc.evbsh5/MAKEDEV3
-rw-r--r--etc/etc.mmeye/MAKEDEV3
-rw-r--r--etc/etc.mvmeppc/MAKEDEV3
-rw-r--r--etc/etc.pmppc/MAKEDEV3
-rw-r--r--etc/etc.prep/MAKEDEV3
-rw-r--r--etc/etc.sandpoint/MAKEDEV3
-rw-r--r--etc/etc.walnut/MAKEDEV3
-rw-r--r--etc/etc.x86_64/MAKEDEV3
11 files changed, 11 insertions, 22 deletions
diff --git a/etc/etc.bebox/MAKEDEV b/etc/etc.bebox/MAKEDEV
index 62af5e7c622..ebbd6b31179 100644
--- a/etc/etc.bebox/MAKEDEV
+++ b/etc/etc.bebox/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.dreamcast/MAKEDEV b/etc/etc.dreamcast/MAKEDEV
index 7728ea385a7..e04ad3a3d9a 100755
--- a/etc/etc.dreamcast/MAKEDEV
+++ b/etc/etc.dreamcast/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.evbsh3/MAKEDEV b/etc/etc.evbsh3/MAKEDEV
index 0dbaf8dc3c2..99136ad66ee 100755
--- a/etc/etc.evbsh3/MAKEDEV
+++ b/etc/etc.evbsh3/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.evbsh5/MAKEDEV b/etc/etc.evbsh5/MAKEDEV
index 0509c348dd5..db0b40353b9 100755
--- a/etc/etc.evbsh5/MAKEDEV
+++ b/etc/etc.evbsh5/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.mmeye/MAKEDEV b/etc/etc.mmeye/MAKEDEV
index 39b6f1a0913..38823a632d8 100644
--- a/etc/etc.mmeye/MAKEDEV
+++ b/etc/etc.mmeye/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.mvmeppc/MAKEDEV b/etc/etc.mvmeppc/MAKEDEV
index 4057ae5b877..2eea3c9b4ba 100644
--- a/etc/etc.mvmeppc/MAKEDEV
+++ b/etc/etc.mvmeppc/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.pmppc/MAKEDEV b/etc/etc.pmppc/MAKEDEV
index 71e4e24b458..0dab347eb38 100644
--- a/etc/etc.pmppc/MAKEDEV
+++ b/etc/etc.pmppc/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.prep/MAKEDEV b/etc/etc.prep/MAKEDEV
index 962f260c869..89854774485 100644
--- a/etc/etc.prep/MAKEDEV
+++ b/etc/etc.prep/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.sandpoint/MAKEDEV b/etc/etc.sandpoint/MAKEDEV
index 2115a1cfccd..12e3bed3951 100644
--- a/etc/etc.sandpoint/MAKEDEV
+++ b/etc/etc.sandpoint/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.walnut/MAKEDEV b/etc/etc.walnut/MAKEDEV
index 4fae5828a2c..d4b9097cf89 100644
--- a/etc/etc.walnut/MAKEDEV
+++ b/etc/etc.walnut/MAKEDEV
@@ -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 @@ std)
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 --git a/etc/etc.x86_64/MAKEDEV b/etc/etc.x86_64/MAKEDEV
index f18c5937458..3f7c56dceb0 100644
--- a/etc/etc.x86_64/MAKEDEV
+++ b/etc/etc.x86_64/MAKEDEV
@@ -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 @@ std)
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