Make MAKEDEV and MAKEDEV.local mutually consistant. Reported in
pr #2596 by Tatoku Ogaito, but my fix is different from his. This is purely an aesthetic change.
This commit is contained in:
parent
e53ae14bdd
commit
07a71fdfd0
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV.local,v 1.4 1997/02/15 10:02:09 mikel Exp $
|
||||
# $NetBSD: MAKEDEV.local,v 1.5 1997/07/31 04:08:15 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1991 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -44,8 +44,11 @@ for i
|
||||
do
|
||||
case $i in
|
||||
|
||||
all)
|
||||
#sh $0 list_of_all_devices
|
||||
;;
|
||||
*)
|
||||
echo 'MAKEDEV.local: no such device.'
|
||||
echo "$0: unknown device type: $*"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/sh -
|
||||
# $NetBSD: MAKEDEV,v 1.19 1997/07/23 01:29:36 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.20 1997/07/31 04:08:17 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -335,7 +335,7 @@ satlink*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
|
||||
*)
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.30 1997/07/23 01:29:39 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.31 1997/07/31 04:08:19 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -443,7 +443,7 @@ audio*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
umask 77
|
||||
;;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.12 1997/07/28 17:41:59 mark Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.13 1997/07/31 04:08:21 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -364,7 +364,7 @@ audio*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh $0.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
|
||||
esac
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.19 1997/07/23 01:29:43 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.20 1997/07/31 04:08:22 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -469,7 +469,7 @@ ipl)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
umask 77
|
||||
;;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.19 1997/07/23 01:29:45 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.20 1997/07/31 04:08:24 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -370,7 +370,7 @@ pty*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
*)
|
||||
echo $i: unknown device
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.54 1997/07/23 01:29:47 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.55 1997/07/31 04:08:27 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -385,7 +385,7 @@ satlink*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh $0.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
|
||||
esac
|
||||
|
@ -20,7 +20,7 @@
|
||||
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
#
|
||||
# from: @(#)MAKEDEV 5.2 (Berkeley) 6/22/90
|
||||
# $NetBSD: MAKEDEV,v 1.28 1997/07/23 01:29:49 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.29 1997/07/31 04:08:29 perry Exp $
|
||||
#
|
||||
# Device "make" file. Valid arguments:
|
||||
# all a smattering--at least one of each except
|
||||
@ -319,7 +319,7 @@ asc*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh $0.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
|
||||
*)
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.9 1997/07/23 01:29:50 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.10 1997/07/31 04:08:31 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -275,7 +275,7 @@ ipl)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh $0.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
|
||||
esac
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.15 1997/07/23 01:29:52 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.16 1997/07/31 04:08:33 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -298,7 +298,7 @@ rtc)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
|
||||
esac
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.9 1997/07/23 01:29:54 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.10 1997/07/31 04:08:35 perry Exp $
|
||||
#
|
||||
# from: @(#)MAKEDEV 8.1 (Berkeley) 6/9/93
|
||||
#
|
||||
@ -305,7 +305,7 @@ ipl)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
|
||||
*)
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.27 1997/07/23 01:29:56 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.28 1997/07/31 04:08:37 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -356,7 +356,7 @@ pty*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh -$- $0.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
*)
|
||||
echo $i: unknown device
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.13 1997/07/23 01:29:59 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.14 1997/07/31 04:08:38 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -233,7 +233,7 @@ md*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
*)
|
||||
echo $arg: unknown device
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/sh -
|
||||
# $NetBSD: MAKEDEV,v 1.10 1997/07/23 01:30:01 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.11 1997/07/31 04:08:40 perry Exp $
|
||||
#
|
||||
# @(#)MAKEDEV 8.1 (Berkeley) 6/9/93
|
||||
#
|
||||
@ -489,7 +489,7 @@ ttyv0)
|
||||
;;
|
||||
|
||||
local)
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/sh -
|
||||
#
|
||||
# $NetBSD: MAKEDEV,v 1.11 1997/07/23 01:30:04 phil Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.12 1997/07/31 04:08:42 perry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -482,7 +482,7 @@ bell*)
|
||||
|
||||
local)
|
||||
umask 0
|
||||
sh MAKEDEV.local
|
||||
sh MAKEDEV.local all
|
||||
umask 77
|
||||
;;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user