summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-07-15 12:29:35 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-15 12:29:35 +0100
commitbd19169a60d5aaadc278439578d06c8027cfecf3 (patch)
treed279cb530327727107b1fb270229303f30e01740 /scripts
parent21949128eb6e8daf8308e29c19904288f9e341ef (diff)
downloadpoky-bd19169a60d5aaadc278439578d06c8027cfecf3.tar.gz
poky-qemu-internal: Use 128MB memory for qemumips/qemuppc
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/poky-qemu-internal8
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 @@
32 32
33if [ -z "$QEMU_MEMORY" ]; then 33if [ -z "$QEMU_MEMORY" ]; then
34 case "$MACHINE" in 34 case "$MACHINE" in
35 "qemux86") 35 "qemux86")
36 QEMU_MEMORY="128M"
37 ;;
38 "qemumips")
39 QEMU_MEMORY="128M"
40 ;;
41 "qemuppc")
36 QEMU_MEMORY="128M" 42 QEMU_MEMORY="128M"
37 ;; 43 ;;
38 *) 44 *)