]> code.ossystems Code Review - openembedded-core.git/commitdiff
tune-arm926ejs: Handle missing thumb suffix
authorJens Rehsack <rehsack@gmail.com>
Wed, 16 Mar 2016 09:34:22 +0000 (10:34 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 23 Mar 2016 21:49:58 +0000 (21:49 +0000)
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>
meta/conf/machine/include/tune-arm926ejs.inc

index 4f4d7dca94cfb1d16a04fbda7c22f3c024d8e276..81bcda339b8c3aad72fa4ac4b8d8b6a56131591b 100644 (file)
@@ -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"