diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2010-06-22 05:20:41 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2010-06-22 05:20:41 +0000 |
commit | 303349f1018e679c3ccccacc639750805ce0ec11 (patch) | |
tree | 29843979673b63cee1b17a5701181c1f60e96b92 /sys/arch | |
parent | 7a2f9571bb3c8b4108af6b5305adcbad4616cb40 (diff) |
bump up the dmesg buffer size. new boxes have lots of crap in them, so
boot messages can be too big to fit.
sure deraadt@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/include/param.h b/sys/arch/amd64/include/param.h index c72821b7b2f..0a05730ac25 100644 --- a/sys/arch/amd64/include/param.h +++ b/sys/arch/amd64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.15 2007/10/28 10:25:09 martin Exp $ */ +/* $OpenBSD: param.h,v 1.16 2010/06/22 05:20:40 dlg Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -94,7 +94,7 @@ #define USPACE_ALIGN (0) /* u-area alignment 0-none */ #ifndef MSGBUFSIZE -#define MSGBUFSIZE 4*NBPG /* default message buffer size */ +#define MSGBUFSIZE 8*NBPG /* default message buffer size */ #endif /* |