diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-16 22:27:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-07-16 22:27:47 +0000 |
commit | 974181e96391457316a2b7a4a63cb74d8fe30e14 (patch) | |
tree | 36db651d17fb0d523503e2d6f9d93e5df0d0af07 | |
parent | 15a3204a3d89056d5e274b009633e7fd3260cd52 (diff) |
add support for hme* and be* network devices
-rw-r--r-- | distrib/sparc/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/sparc/install.md b/distrib/sparc/install.md index cbc05fe2b30..1e5a6892cf9 100644 --- a/distrib/sparc/install.md +++ b/distrib/sparc/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.18 1998/03/27 23:28:17 deraadt Exp $ +# $OpenBSD: install.md,v 1.19 1998/07/16 22:27:46 deraadt Exp $ # $NetBSD: install.md,v 1.3.2.5 1996/08/26 15:45:28 gwr Exp $ # # @@ -112,7 +112,7 @@ md_get_cddevs() { md_get_ifdevs() { # return available network devices - # dmesg | egrep "(^le[0-9] |^ie[0-9] )" | cut -d" " -f1 | sort -u + # dmesg | egrep "(^le[0-9] |^ie[0-9] |^hme[0-9] |^be[0-9])" | cut -d" " -f1 | sort -u sed -n -e '1,/^OpenBSD /d' -e '/^le[0-9] /{s/ .*//;p;}'< $MSGBUF } |