diff options
author | 2000-04-24 16:33:44 +0000 | |
---|---|---|
committer | 2000-04-24 16:33:44 +0000 | |
commit | 2c4e5bb833a48b930752ceaf849dbc9f18268d75 (patch) | |
tree | a1d98cc6d5b71828aad55efe8fbf46a725f8d094 | |
parent | 3C1 and 3CCFEM556BI (this one uses boomerang chipset, so no support yet); (diff) | |
download | wireguard-openbsd-2c4e5bb833a48b930752ceaf849dbc9f18268d75.tar.xz wireguard-openbsd-2c4e5bb833a48b930752ceaf849dbc9f18268d75.zip |
Treat the beginning of the current dmesg output as starting at
/^OpenBSD /, not /^Copyright / (the latter doesn't show up in dmesg).
-rw-r--r-- | distrib/alpha/ramdisk/install.md | 6 | ||||
-rw-r--r-- | distrib/sparc/install.md | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/distrib/alpha/ramdisk/install.md b/distrib/alpha/ramdisk/install.md index 9776ccca9dc..1d91862df9c 100644 --- a/distrib/alpha/ramdisk/install.md +++ b/distrib/alpha/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.33 1999/09/03 18:55:21 deraadt Exp $ +# $OpenBSD: install.md,v 1.34 2000/04/24 16:33:44 millert Exp $ # # Copyright (c) 1996 The NetBSD Foundation, Inc. # All rights reserved. @@ -60,8 +60,8 @@ md_set_term() { md_get_msgbuf() { # Only want to see one boot's worth of info sed -n -f /dev/stdin /kern/msgbuf <<- OOF - /^Copyright (c)/h - /^Copyright (c)/!H + /^OpenBSD /h + /^OpenBSD /!H \${ g p diff --git a/distrib/sparc/install.md b/distrib/sparc/install.md index c130c25c4b1..3a75fe979ad 100644 --- a/distrib/sparc/install.md +++ b/distrib/sparc/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.31 2000/03/11 02:29:03 deraadt Exp $ +# $OpenBSD: install.md,v 1.32 2000/04/24 16:33:44 millert Exp $ # $NetBSD: install.md,v 1.3.2.5 1996/08/26 15:45:28 gwr Exp $ # # @@ -91,8 +91,8 @@ __EOT md_get_msgbuf() { # Only want to see one boot's worth of info sed -n -f /dev/stdin $MSGBUF <<- OOF - /^Copyright (c)/h - /^Copyright (c)/!H + /^OpenBSD /h + /^OpenBSD /!H \${ g p |