diff options
author | Jens Rehsack <rehsack@gmail.com> | 2016-03-16 10:34:22 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-23 21:49:58 +0000 |
commit | dbd7fd1cbbc3e7003a48542642acdc80dca3f514 (patch) | |
tree | 8bf2c8a7cc10b07994d9ead5835406c076ad367e /meta | |
parent | 37039da6a09d7781beb93892932488940786b41f (diff) | |
download | openembedded-core-dbd7fd1cbbc3e7003a48542642acdc80dca3f514.tar.gz openembedded-core-dbd7fd1cbbc3e7003a48542642acdc80dca3f514.tar.bz2 openembedded-core-dbd7fd1cbbc3e7003a48542642acdc80dca3f514.zip |
tune-arm926ejs: Handle missing thumb suffix
When enabling tune for arm926ejs, poky optionally appends suffixes for
thumb and dsp support. Since sometimes arm926ejse (ARM code) and sometime
arm926ejste (thumb code) is used in PACKAGE_ARCH, allow both.
Signed-off-by: Jens Rehsack <sno@netbsd.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/machine/include/tune-arm926ejs.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-arm926ejs.inc b/meta/conf/machine/include/tune-arm926ejs.inc index 4f4d7dca94..81bcda339b 100644 --- a/meta/conf/machine/include/tune-arm926ejs.inc +++ b/meta/conf/machine/include/tune-arm926ejs.inc @@ -8,4 +8,4 @@ TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'arm926ejs', ' -mcpu=arm92 AVAILTUNES += "arm926ejs" ARMPKGARCH_tune-arm926ejs = "arm926ejs" TUNE_FEATURES_tune-arm926ejs = "${TUNE_FEATURES_tune-armv5te} arm926ejs" -PACKAGE_EXTRA_ARCHS_tune-arm926ejs = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} arm926ejste" +PACKAGE_EXTRA_ARCHS_tune-arm926ejs = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} arm926ejste arm926ejse" |