summaryrefslogtreecommitdiff
path: root/distrib/pmax
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-01-25 19:18:43 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-01-25 19:18:43 +0000
commit98f744d503ff2a8b62f222bf4891f35ac4edceaa (patch)
tree0afda579eba1c3bd119b15efb3c65db8bcff88ba /distrib/pmax
parent8508265d49c9b3049cc792bb78efdacf0125b3a3 (diff)
egrep -a to permit working with binary data in dmesg
Diffstat (limited to 'distrib/pmax')
-rw-r--r--distrib/pmax/install.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/pmax/install.md b/distrib/pmax/install.md
index 28690f58bb9..1378ab3a2d9 100644
--- a/distrib/pmax/install.md
+++ b/distrib/pmax/install.md
@@ -1,4 +1,4 @@
-# $OpenBSD: install.md,v 1.14 1999/10/12 06:02:01 maja Exp $
+# $OpenBSD: install.md,v 1.15 2001/01/25 19:18:41 deraadt Exp $
# $NetBSD: install.md,v 1.3.2.5 1996/08/26 15:45:28 gwr Exp $
#
#
@@ -106,12 +106,12 @@ md_machine_arch() {
md_get_diskdevs() {
# return available disk devices
- grep "^rz[0-6] " < /kern/msgbuf | cut -d" " -f1 | sort -u
+ grep -a "^rz[0-6] " < /kern/msgbuf | cut -d" " -f1 | sort -u
}
md_get_cddevs() {
# return available CDROM devices
- grep "^rz[0-6] " < /kern/msgbuf | cut -d" " -f1 | sort -u
+ grep -a "^rz[0-6] " < /kern/msgbuf | cut -d" " -f1 | sort -u
}
md_get_ifdevs() {