From: Khem Raj Date: Fri, 20 Jul 2012 22:55:14 +0000 (-0700) Subject: bitbake.conf: override -cpu for qemu on ppc with SPE X-Git-Tag: rev_ivi_2015_02_04~16256 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=acc268138a4ef2373996df8143555c5aa86750e2;p=scm%2Fbb%2Ftizen-distro.git bitbake.conf: override -cpu for qemu on ppc with SPE We use -mtune flags which lets our application have SPE intruction in them which is a good thing but when running qemu especially in user mode these application wont work with default powerpc emulation. Therefore we have to add proper -cpu option to let qemu emulate for a given cpu. (From OE-Core rev: 695598415b4e9e17def7f04332bdbc0d24cc1efc) Signed-off-by: Khem Raj Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 1525e44..f2d00aa 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -139,6 +139,10 @@ QEMU_OPTIONS = "" QEMU_OPTIONS_iwmmxt = "-cpu pxa270-c5" QEMU_OPTIONS_armv6 = "-cpu arm1136" QEMU_OPTIONS_armv7a = "-cpu cortex-a8" +QEMU_OPTIONS_e500v2 = "-cpu e500v2" +QEMU_OPTIONS_e500mc = "-cpu e500mc" +QEMU_OPTIONS_e5500 = "-cpu e5500" +QEMU_OPTIONS_e5500-64b = "-cpu e5500" ################################################################## # Date/time variables.