From: Marcin Juszkiewicz Date: Mon, 5 May 2008 08:26:05 +0000 (+0000) Subject: poky-qemu-internal: give 128M for qemux86 - otherwise generating of locales fails X-Git-Tag: 2011-1~9049 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f715ee6df76b8f6d9e75ce5f9160a25b73f4993c;p=openembedded-core.git 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 --- 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 @@ # 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`