diff options
| -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 9b55e4762e..64273bda38 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal | |||
| @@ -31,7 +31,15 @@ | |||
| 31 | # | 31 | # |
| 32 | 32 | ||
| 33 | if [ -z "$QEMU_MEMORY" ]; then | 33 | if [ -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 | |||
| 35 | fi | 43 | fi |
| 36 | 44 | ||
| 37 | QEMUIFUP=`which poky-qemu-ifup` | 45 | QEMUIFUP=`which poky-qemu-ifup` |
