diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/poky-qemu-internal | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index 9b55e4762..64273bda3 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal @@ -31,7 +31,15 @@ # if [ -z "$QEMU_MEMORY" ]; then - QEMU_MEMORY="64M" + case "$MACHINE" in + "qemux86") + QEMU_MEMORY="128M" + ;; + *) + QEMU_MEMORY="64M" + ;; + esac + fi QEMUIFUP=`which poky-qemu-ifup` |