summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-05-21 01:41:05 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-05-21 01:41:05 +0000
commitf9441f1c73d4fa7b8a948d5c84aa3d54ebbb300b (patch)
tree48f586d05ef27c7a9962e8a04bcbeb48ea717820 /etc
parent0a17d03f9d43b73425c112313435f9d21b8f015c (diff)
remove MAKEDEV.local finally
Diffstat (limited to 'etc')
-rw-r--r--etc/MAKEDEV.local51
-rw-r--r--etc/Makefile4
-rw-r--r--etc/etc.mvmeppc/MAKEDEV.md8
3 files changed, 2 insertions, 61 deletions
diff --git a/etc/MAKEDEV.local b/etc/MAKEDEV.local
deleted file mode 100644
index 26f5b0489c3..00000000000
--- a/etc/MAKEDEV.local
+++ /dev/null
@@ -1,51 +0,0 @@
-#!/bin/sh -
-#
-# $OpenBSD: MAKEDEV.local,v 1.3 1999/11/25 20:10:57 ian Exp $
-#
-# Copyright (c) 1991 The Regents of the University of California.
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-# 3. All advertising materials mentioning features or use of this software
-# must display the following acknowledgement:
-# This product includes software developed by the University of
-# California, Berkeley and its contributors.
-# 4. Neither the name of the University nor the names of its contributors
-# may be used to endorse or promote products derived from this software
-# without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-# SUCH DAMAGE.
-#
-# @(#)MAKEDEV.local 5.1 (Berkeley) 3/22/91
-#
-
-# Local device MAKEDEV script.
-
-PATH=/sbin:/usr/sbin:/bin:/usr/bin
-umask 77
-for i
-do
-case $i in
-
-*)
- echo 'MAKEDEV.local: no such device.'
- ;;
-esac
-done
diff --git a/etc/Makefile b/etc/Makefile
index 53280aa80fc..1403a542a06 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.162 2002/05/16 15:00:48 millert Exp $
+# $OpenBSD: Makefile,v 1.163 2002/05/21 01:41:04 deraadt Exp $
TZDIR= /usr/share/zoneinfo
LOCALTIME= US/Pacific
@@ -76,8 +76,6 @@ distribution-etc-root-var: distrib-dirs
${INSTALL} -c -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
pwd_mkdb -p -d ${DESTDIR}/etc /etc/master.passwd
${INSTALL} -c -o root -g wheel -m 644 moduli ${DESTDIR}/etc
- ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
- MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
cd root; \
${INSTALL} -c -o root -g wheel -m 644 dot.cshrc \
${DESTDIR}/root/.cshrc; \
diff --git a/etc/etc.mvmeppc/MAKEDEV.md b/etc/etc.mvmeppc/MAKEDEV.md
index 3619e240ae5..8b769d2e1de 100644
--- a/etc/etc.mvmeppc/MAKEDEV.md
+++ b/etc/etc.mvmeppc/MAKEDEV.md
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $OpenBSD: MAKEDEV.md,v 1.4 2002/05/16 21:11:21 miod Exp $
+# $OpenBSD: MAKEDEV.md,v 1.5 2002/05/21 01:41:04 deraadt Exp $
#
# Copyright (c) 1990 The Regents of the University of California.
# All rights reserved.
@@ -28,7 +28,6 @@ _TITLE(make)
_DEV(all)
_DEV(std)
_DEV(fdesc, 21)
-_DEV(local)
_DEV(ramd)
_TITLE(tap)
_DEV(st, 20, 5)
@@ -511,11 +510,6 @@ altq)
done
;;
-local)
- umask 0
- test -s MAKEDEV.local && sh $this.local
- ;;
-
*)
echo $i: unknown device
esac