diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-15 12:29:35 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-15 12:29:35 +0100 |
commit | bd19169a60d5aaadc278439578d06c8027cfecf3 (patch) | |
tree | d279cb530327727107b1fb270229303f30e01740 /scripts | |
parent | 21949128eb6e8daf8308e29c19904288f9e341ef (diff) | |
download | openembedded-core-bd19169a60d5aaadc278439578d06c8027cfecf3.tar.gz openembedded-core-bd19169a60d5aaadc278439578d06c8027cfecf3.tar.bz2 openembedded-core-bd19169a60d5aaadc278439578d06c8027cfecf3.zip |
poky-qemu-internal: Use 128MB memory for qemumips/qemuppc
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/poky-qemu-internal | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index 8e1ffcf248..6c49ddeaf9 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal @@ -32,7 +32,13 @@ if [ -z "$QEMU_MEMORY" ]; then case "$MACHINE" in - "qemux86") + "qemux86") + QEMU_MEMORY="128M" + ;; + "qemumips") + QEMU_MEMORY="128M" + ;; + "qemuppc") QEMU_MEMORY="128M" ;; *) |