diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-03-01 21:03:24 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-03-01 21:03:24 +0000 |
commit | bf03b2865e2ba81363ea1eaad7b08e5bac5926e2 (patch) | |
tree | e14230671c2cf8f0ed61a64bcec30075d8e0f08b /conf | |
parent | 8b8053a5440337b1ba8b83b2e453bf407d9df2b2 (diff) |
bitbake.conf: added QEMU_OPTIONS variable used for generating glibc binary locales for armv6 cpu (from Poky)
Diffstat (limited to 'conf')
-rw-r--r-- | conf/bitbake.conf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 858e411d8c..de526f0e56 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -93,6 +93,11 @@ PACKAGE_ARCH = "${HOST_ARCH}" MACHINE_ARCH = "${@[bb.data.getVar('HOST_ARCH', d, 1), bb.data.getVar('MACHINE', d, 1)][bool(bb.data.getVar('MACHINE', d, 1))]}" PACKAGE_ARCHS = "all any noarch ${TARGET_ARCH} ${PACKAGE_EXTRA_ARCHS} ${MACHINE}" +# select proper CPU to get binary locales generated +QEMU_OPTIONS = "" +QEMU_OPTIONS_iwmmxt = "-cpu pxa270-c5" +QEMU_OPTIONS_armv6 = "-cpu arm1136" + ################################################################## # Date/time variables. ################################################################## |