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
This commit is contained in:
Marcin Juszkiewicz 2008-05-05 08:26:05 +00:00
parent d6addd4969
commit f715ee6df7
1 changed files with 9 additions and 1 deletions

View File

@ -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`