summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2022-04-30 08:55:53 +0300
committerSimon Glass <sjg@chromium.org>2022-06-28 05:09:51 +0300
commit2be964d29f11ead9c82ba1a19fbfeceb63e3f62d (patch)
tree755511ee15718a6db2ffd275f388917c7215aea2
parent4780f7d8a6b2f479884d4e6068a73d1a69f82d4d (diff)
downloadu-boot-2be964d29f11ead9c82ba1a19fbfeceb63e3f62d.tar.xz
sandbox: raise SANDBOX_RAM_SIZE_MB default to 256
The UEFI Self Certification Test (SCT) cannot run on 128 MiB. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-rw-r--r--arch/sandbox/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sandbox/Kconfig b/arch/sandbox/Kconfig
index 5f55c7f28e..852a7c8bf2 100644
--- a/arch/sandbox/Kconfig
+++ b/arch/sandbox/Kconfig
@@ -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.