]> code.ossystems Code Review - openembedded-core.git/commitdiff
poky-qemu-internal: give 128M for qemux86 - otherwise generating of locales fails
authorMarcin Juszkiewicz <hrw@openedhand.com>
Mon, 5 May 2008 08:26:05 +0000 (08:26 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Mon, 5 May 2008 08:26:05 +0000 (08:26 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4412 311d38ba-8fff-0310-9ca6-ca027cbcb966

scripts/poky-qemu-internal

index 9b55e4762ea54994b3882ad09027bf972215cea7..64273bda381c2fa10bea251eee90066ad288edd5 100755 (executable)
 #
 
 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`