summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlias Apalodimas <ilias.apalodimas@linaro.org>2020-03-12 12:47:53 +0200
committerIlias Apalodimas <ilias.apalodimas@linaro.org>2020-03-12 12:47:53 +0200
commitda2b347ef23fd16efca23b73eb4401074ee2416e (patch)
tree50cf905aa3dcb8b1467eea5b1c1e739b92c2d00e
parent6eb7f57ae52ce69470235f19289964dde939f843 (diff)
scripts: qemu: reduce memory to 1024
Booting with 4096 fails on armv7 + U-boot + TF-A + OP-TEE Use 1024 until we figure out what's wrong Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
-rwxr-xr-xqemu/run_qemu.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu/run_qemu.sh b/qemu/run_qemu.sh
index 62b2815..6004cd7 100755
--- a/qemu/run_qemu.sh
+++ b/qemu/run_qemu.sh
@@ -21,7 +21,7 @@ print_help () {
[ $# -lt 2 ] && print_help
# common args
-common_args+=' -m 4096 -smp 2 -show-cursor'
+common_args+=' -m 1024 -smp 2 -show-cursor'
common_args+=' -serial stdio '
# setup RNG
common_args+=' -device virtio-rng-pci '