diff options
author | Kai Kang <kai.kang@windriver.com> | 2014-12-25 16:19:33 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-25 08:27:07 +0000 |
commit | 93979b2d025cf318fd0d867ed730721c7594d33b (patch) | |
tree | 752fae2302479cded62485a5a1b68e3024b42df0 /scripts/runqemu-internal | |
parent | d2a70aaa1fea446b578a4d904d8d92a6eb16b6a5 (diff) | |
download | openembedded-core-contrib-93979b2d025cf318fd0d867ed730721c7594d33b.tar.gz |
runqemu-internal: increase memory for qemuarm64
Increase memory to 512M for qemuarm64. The original size 126M can't make
task testimage pass, neither 256M.
[YOCTO #7102]
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu-internal')
-rwxr-xr-x | scripts/runqemu-internal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal index f6274e20e80..5711bd38020 100755 --- a/scripts/runqemu-internal +++ b/scripts/runqemu-internal @@ -51,7 +51,7 @@ else mem_size=128 ;; "qemuarm64") - mem_size=128 + mem_size=512 ;; "qemumicroblaze") mem_size=64 |