Increase the default msgbuf size from 8k to 32k. Boot -v easily

overflows the default buffer making it too hard to get a dmesg from
a verbose boot.  It's still changeable via an option, so if picobsd
needs to set it to something else they still can.

Reviewed by:	phk, alfred
This commit is contained in:
peter 2000-01-29 15:29:11 +00:00
parent 2aada2e694
commit 89b9b9b4af

@ -52,7 +52,7 @@ extern struct msgbuf *msgbufp;
void msgbufinit __P((void *ptr, size_t size));
#if !defined(MSGBUF_SIZE)
#define MSGBUF_SIZE 8192
#define MSGBUF_SIZE 32768
#endif
#endif