diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-05-05 08:26:05 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-05-05 08:26:05 +0000 |
commit | f715ee6df76b8f6d9e75ce5f9160a25b73f4993c (patch) | |
tree | 8e51adf234091ad9c2747b7b7dcc5350336d9351 | |
parent | d6addd4969585745e0c4cf528b44cee1489edc88 (diff) | |
download | poky-f715ee6df76b8f6d9e75ce5f9160a25b73f4993c.tar.gz |
poky-qemu-internal: give 128M for qemux86 - otherwise generating of locales fails
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4412 311d38ba-8fff-0310-9ca6-ca027cbcb966
-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` |