
25 Sep
2025
25 Sep
'25
5:47 p.m.
From: Simon Glass <sjg@chromium.org> Since the U-Boot app now requests 512MB (to fit the ramdisk, etc.) and Tianocore uses some as well, the current 512MB is not enough. Double it. Signed-off-by: Simon Glass <sjg@chromium.org> --- scripts/build-efi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-efi b/scripts/build-efi index 27446295b2d..21c2b656530 100755 --- a/scripts/build-efi +++ b/scripts/build-efi @@ -127,7 +127,7 @@ class BuildEfi: mem = '4G' extra.extend(['-smp', '4']) else: - mem = '512' + mem = '1G' if self.args.debug: extra.extend(['-s', '-S']) -- 2.43.0