]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: raise SANDBOX_RAM_SIZE_MB default to 256
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Sat, 30 Apr 2022 05:55:53 +0000 (07:55 +0200)
committerSimon Glass <sjg@chromium.org>
Tue, 28 Jun 2022 02:09:51 +0000 (03:09 +0100)
The UEFI Self Certification Test (SCT) cannot run on 128 MiB.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
arch/sandbox/Kconfig

index 5f55c7f28e1d6e8879811641ba6cb724c223059b..852a7c8bf2c2814f8120157d4b409438fbf04e7c 100644 (file)
@@ -17,11 +17,11 @@ config SANDBOX64
 
 config SANDBOX_RAM_SIZE_MB
        int "RAM size in MiB"
-       default 128
+       default 256
        range 64 4095 if !SANDBOX64
        range 64 268435456 if SANDBOX64
        help
-         Memory size of the sandbox in MiB. The default value is 128 MiB.
+         Memory size of the sandbox in MiB. The default value is 256 MiB.
          The minimum value is 64 MiB. The maximum value is 4095 MiB for the
          32bit sandbox.