svn commit: r337060 - head/stand/uboot/common
Kyle Evans
kevans at FreeBSD.org
Wed Aug 1 20:08:21 UTC 2018
Author: kevans
Date: Wed Aug 1 20:08:20 2018
New Revision: 337060
URL: https://svnweb.freebsd.org/changeset/base/337060
Log:
ubldr: Bump heap size, 1MB -> 2MB
1MB was leaving very little margin in some of the worse-case scenarios with
lualoader. 2MB is still low enough that we shouldn't have any problems with
UBoot-supported boards.
MFC after: 1 week
Modified:
head/stand/uboot/common/main.c
Modified: head/stand/uboot/common/main.c
==============================================================================
--- head/stand/uboot/common/main.c Wed Aug 1 19:45:04 2018 (r337059)
+++ head/stand/uboot/common/main.c Wed Aug 1 20:08:20 2018 (r337060)
@@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$");
#endif
#ifndef HEAP_SIZE
-#define HEAP_SIZE (1 * 1024 * 1024)
+#define HEAP_SIZE (2 * 1024 * 1024)
#endif
struct uboot_devdesc currdev;
More information about the svn-src-all
mailing list