[Concept,02/22] script: Use a minimum of 1G of memory for EFI

Message ID 20250925174753.3429102-3-sjg@u-boot.org
State New
Headers
Series efi: Tidy up some commands and provide a keyboard driver |

Commit Message

Simon Glass Sept. 25, 2025, 5:47 p.m. UTC
  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(-)
  

Patch

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'])