diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2002-03-10 06:51:16 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2002-03-10 06:51:16 +0000 |
commit | bea8ffb514c3b9311b29b94a34b9ea6e4ac09f0b (patch) | |
tree | 9dfadecd988a85404c0dde1bc3567d5459f1e507 /distrib | |
parent | a83ff50dde2cee047d2ae80babeec3e703974689 (diff) |
Add ra[0-9] hd[0-9] and rl[0-9] to drives matched by md_get_diskdevs.
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/vax/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/vax/install.md b/distrib/vax/install.md index 7d5fdf5eb70..5c78882810b 100644 --- a/distrib/vax/install.md +++ b/distrib/vax/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.6 2002/03/10 06:48:43 hugh Exp $ +# $OpenBSD: install.md,v 1.7 2002/03/10 06:51:15 hugh Exp $ # $NetBSD: install.md,v 1.3.2.5 1996/08/26 15:45:28 gwr Exp $ # # @@ -68,8 +68,8 @@ md_get_msgbuf() { md_get_diskdevs() { # return available disk devices - md_get_msgbuf | sed -n -e '/^sd[0-9] /{s/ .*//;p;}' \ - -e '/^x[ra][0-9] /{s/ .*//;p;}' + md_get_msgbuf |sed -n -e '/^[hs]d[0-9] /{s/ .*//;p;}' \ + -e '/^r[al][0-9] /{s/ .*//;p;}' } md_get_cddevs() { |