diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-07-20 15:55:14 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-28 09:20:51 +0100 |
commit | e95eff10498fe6bd0aba38b566e220a3a55aa60f (patch) | |
tree | 943b5974f0d6a22f06edb814b7c4ff47b4ccdd42 /meta/conf/bitbake.conf | |
parent | ce6d06642c59d8595069c7e6e4ff310f83bda594 (diff) | |
download | poky-e95eff10498fe6bd0aba38b566e220a3a55aa60f.tar.gz |
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 <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r-- | meta/conf/bitbake.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 1525e44b2c..f2d00aa327 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -139,6 +139,10 @@ QEMU_OPTIONS = "" | |||
139 | QEMU_OPTIONS_iwmmxt = "-cpu pxa270-c5" | 139 | QEMU_OPTIONS_iwmmxt = "-cpu pxa270-c5" |
140 | QEMU_OPTIONS_armv6 = "-cpu arm1136" | 140 | QEMU_OPTIONS_armv6 = "-cpu arm1136" |
141 | QEMU_OPTIONS_armv7a = "-cpu cortex-a8" | 141 | QEMU_OPTIONS_armv7a = "-cpu cortex-a8" |
142 | QEMU_OPTIONS_e500v2 = "-cpu e500v2" | ||
143 | QEMU_OPTIONS_e500mc = "-cpu e500mc" | ||
144 | QEMU_OPTIONS_e5500 = "-cpu e5500" | ||
145 | QEMU_OPTIONS_e5500-64b = "-cpu e5500" | ||
142 | 146 | ||
143 | ################################################################## | 147 | ################################################################## |
144 | # Date/time variables. | 148 | # Date/time variables. |