code: 9ferno

Download patch

ref: 1971857799205f6226d2b8fa354df153d035dae4
parent: c0a28bad03c29788d9fc18b5ab56c13a6222bf7d
author: 9ferno <gophone2015@gmail.com>
date: Mon Aug 9 03:23:14 EDT 2021

increased print buffer size to accommodate e820 conf value

--- a/emu/port/dat.h
+++ b/emu/port/dat.h
@@ -54,7 +54,7 @@
 	KNAMELEN	= 28,
 	MAXROOT		= 5*KNAMELEN, 	/* Maximum root pathname len of devfs-* */
 	NUMSIZE		= 11,
-	PRINTSIZE	= 256,
+	PRINTSIZE	= 1024 /*256*/,
 	READSTR		= 1000		/* temporary buffer size for device reads */
 };
 
--- a/os/port/portdat.h
+++ b/os/port/portdat.h
@@ -563,7 +563,7 @@
 
 enum
 {
-	PRINTSIZE =	256,
+	PRINTSIZE	= 1024 /*256*/,
 	NUMSIZE	=	12,		/* size of formatted number */
 	MB =		(1024*1024),
 	READSTR =	1000,		/* temporary buffer size for device reads */