summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/poky-qemu-internal10
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal
index 9b55e4762e..64273bda38 100755
--- a/scripts/poky-qemu-internal
+++ b/scripts/poky-qemu-internal
@@ -31,7 +31,15 @@
31# 31#
32 32
33if [ -z "$QEMU_MEMORY" ]; then 33if [ -z "$QEMU_MEMORY" ]; then
34 QEMU_MEMORY="64M" 34 case "$MACHINE" in
35 "qemux86")
36 QEMU_MEMORY="128M"
37 ;;
38 *)
39 QEMU_MEMORY="64M"
40 ;;
41 esac
42
35fi 43fi
36 44
37QEMUIFUP=`which poky-qemu-ifup` 45QEMUIFUP=`which poky-qemu-ifup`