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
This commit is contained in:
Kyle Evans 2018-08-01 20:08:20 +00:00
parent 48729f75e1
commit bba8f1fe0e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=337060

View file

@ -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;