summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-02-28 02:37:48 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-02-28 02:37:48 +0000
commit68ef5be9001731ce9570e1d95db22707f30da9a6 (patch)
treefb1d4d16c8d0df58dc5398c1ab81cd759e2cdb0d /distrib
parentbbb9236a2ff73a6e00b8ed6de03a0ed9bcc78cd5 (diff)
Deal with sd/wd > 9 (wide, multiple controllers, etc)
Diffstat (limited to 'distrib')
-rw-r--r--distrib/i386/floppies/ramdisk/install.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/i386/floppies/ramdisk/install.md b/distrib/i386/floppies/ramdisk/install.md
index 53b3fd1afb0..9634135204f 100644
--- a/distrib/i386/floppies/ramdisk/install.md
+++ b/distrib/i386/floppies/ramdisk/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.26 1997/10/29 21:43:22 deraadt Exp $
+# $OpenBSD: install.md,v 1.27 1998/02/28 02:37:47 millert Exp $
#
#
# Copyright rc) 1996 The NetBSD Foundation, Inc.
@@ -62,12 +62,12 @@ md_machine_arch() {
md_get_diskdevs() {
# return available disk devices
- cat /kern/msgbuf | egrep "^[sw]d[0-9] " | cut -d" " -f1 | sort -u
+ cat /kern/msgbuf | egrep "^[sw]d[0-9]+ " | cut -d" " -f1 | sort -u
}
md_get_cddevs() {
# return available CDROM devices
- cat /kern/msgbuf | egrep "^a?cd[0-9] " | cut -d" " -f1 | sort -u
+ cat /kern/msgbuf | egrep "^a?cd[0-9]+ " | cut -d" " -f1 | sort -u
}
md_get_ifdevs() {