Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/etc/etc.vax Move 'raid*' before 'ra*' in case statement to a...
details: https://anonhg.NetBSD.org/src/rev/a2cbbd1fb67f
branches: trunk
changeset: 474075:a2cbbd1fb67f
user: abs <abs%NetBSD.org@localhost>
date: Sun Jun 27 20:01:49 1999 +0000
description:
Move 'raid*' before 'ra*' in case statement to avoid false match of ra*
against 'raid{0,1,2}'.
diffstat:
etc/etc.vax/MAKEDEV | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (23 lines):
diff -r f19193d5318e -r a2cbbd1fb67f etc/etc.vax/MAKEDEV
--- a/etc/etc.vax/MAKEDEV Sun Jun 27 18:38:24 1999 +0000
+++ b/etc/etc.vax/MAKEDEV Sun Jun 27 20:01:49 1999 +0000
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $NetBSD: MAKEDEV,v 1.23 1999/01/16 01:40:30 abs Exp $
+# $NetBSD: MAKEDEV,v 1.24 1999/06/27 20:01:49 abs Exp $
#
# @(#)MAKEDEV 8.1 (Berkeley) 6/9/93
#
@@ -195,11 +195,11 @@
hp*) name=hp; unit=${i#hp}; blk=0; chr=4;;
hk*) name=hk; unit=${i#hk}; blk=3; chr=11;;
up*) name=up; unit=${i#up}; blk=2; chr=13;;
+ raid*) name=raid; unit=${i#raid}; blk=25; chr=73;;
ra*) name=ra; unit=${i#ra}; blk=9; chr=9;;
rb*) name=rb; unit=${i#rb}; blk=11; chr=23;;
rx*) name=rx; unit=${i#rx}; blk=12; chr=30;;
rl*) name=rl; unit=${i#rl}; blk=14; chr=32;;
- raid*) name=raid; unit=${i#raid}; blk=25; chr=73;;
ccd*) name=ccd; unit=${i#ccd}; blk=17; chr=54;;
vnd*) name=vnd; unit=${i#vnd}; blk=18; chr=55;;
rd*) name=rd; unit=${i#rd}; blk=19; chr=58;;
Home |
Main Index |
Thread Index |
Old Index