svn commit: r328806 - head/stand/ofw/common

Warner Losh imp at FreeBSD.org
Fri Feb 2 19:42:02 UTC 2018


Author: imp
Date: Fri Feb  2 19:42:02 2018
New Revision: 328806
URL: https://svnweb.freebsd.org/changeset/base/328806

Log:
  We need more heap space to properly load newer powerpc kernels.
  
  PR: 225323

Modified:
  head/stand/ofw/common/main.c

Modified: head/stand/ofw/common/main.c
==============================================================================
--- head/stand/ofw/common/main.c	Fri Feb  2 18:38:29 2018	(r328805)
+++ head/stand/ofw/common/main.c	Fri Feb  2 19:42:02 2018	(r328806)
@@ -42,7 +42,7 @@ u_int32_t	acells, scells;
 
 static char bootargs[128];
 
-#define	HEAP_SIZE	0x100000
+#define	HEAP_SIZE	0x800000
 
 #define OF_puts(fd, text) OF_write(fd, text, strlen(text))
 


More information about the svn-src-head mailing list