Date: Fri, 2 Feb 2018 19:42:02 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r328806 - head/stand/ofw/common Message-ID: <201802021942.w12Jg2Ye059205@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802021942.w12Jg2Ye059205>