summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/tune-thunderx.inc
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2015-12-09 15:07:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-07 13:40:18 +0000
commit860663a92ff288c1dda6f92bcf3247438beb784d (patch)
treee0e081f297aabb18efde3813219dfe8f3992639a /meta/conf/machine/include/tune-thunderx.inc
parent8c483a199485112d7009b5f54bc955f7fac6c4e9 (diff)
downloadpoky-860663a92ff288c1dda6f92bcf3247438beb784d.tar.gz
arm/arch-arm*, tune-cortexa*, tune-thunderx.inc, powerpac/arch-powerpc64.inc: Use normal assignment
* some tunes were using weak assignment for TUNE_FEATURES, unify all tunes to use normal assignment so it behaves consistently (From OE-Core rev: 0a52bd3ed23e66200401d0836aad783095e7c7a0) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/tune-thunderx.inc')
-rw-r--r--meta/conf/machine/include/tune-thunderx.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/machine/include/tune-thunderx.inc b/meta/conf/machine/include/tune-thunderx.inc
index 4888d0c19a..3d43b0f7e5 100644
--- a/meta/conf/machine/include/tune-thunderx.inc
+++ b/meta/conf/machine/include/tune-thunderx.inc
@@ -10,8 +10,8 @@ TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'thunderx', ' -mcpu=thunde
10ARMPKGARCH_tune-thunderx ?= "thunderx" 10ARMPKGARCH_tune-thunderx ?= "thunderx"
11ARMPKGARCH_tune-thunderx_be ?= "thunderx_be" 11ARMPKGARCH_tune-thunderx_be ?= "thunderx_be"
12 12
13TUNE_FEATURES_tune-thunderx ?= "${TUNE_FEATURES_tune-aarch64} thunderx" 13TUNE_FEATURES_tune-thunderx = "${TUNE_FEATURES_tune-aarch64} thunderx"
14TUNE_FEATURES_tune-thunderx_be ?= "${TUNE_FEATURES_tune-thunderx} bigendian" 14TUNE_FEATURES_tune-thunderx_be = "${TUNE_FEATURES_tune-thunderx} bigendian"
15BASE_LIB_tune-thunderx = "lib64" 15BASE_LIB_tune-thunderx = "lib64"
16BASE_LIB_tune-thunderx_be = "lib64" 16BASE_LIB_tune-thunderx_be = "lib64"
17 17