diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2015-10-06 17:01:24 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-07 13:40:19 +0000 |
commit | f29d642c2b776d3fd8ce3ddab9d1f8a003003087 (patch) | |
tree | e4a5ba4636d09192c266509d1de4a955397a3ac0 /meta/conf/machine/include/tune-arm926ejs.inc | |
parent | c6a19917ec5350cdfc4053d14462609782613bbc (diff) | |
download | poky-f29d642c2b776d3fd8ce3ddab9d1f8a003003087.tar.gz |
tune-*: use mcpu instead of mtune for ARM tunes
* since:
commit cffda9a821a3b83a8529d643c567859e091c6846
Author: Martin Jansa <Martin.Jansa@gmail.com>
Date: Tue Sep 11 17:05:45 2012 +0000
arch-arm: define different ARMPKGARCH when different CCARGS are used
we don't need to worry about e.g. cortexa7 device upgrading
binary package from armv7a feed which would be built with
-mcpu=cortexa15, so we can use -mcpu instead of -mtune, because
we won't share the binary feed with MACHINEs built with different
tune.
(From OE-Core rev: f7bb2d4cf18ca8d2a90b4b3b5c6c48dad106ca28)
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-arm926ejs.inc')
-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 e554941770..4f4d7dca94 100644 --- a/meta/conf/machine/include/tune-arm926ejs.inc +++ b/meta/conf/machine/include/tune-arm926ejs.inc | |||
@@ -3,7 +3,7 @@ DEFAULTTUNE ?= "armv5te" | |||
3 | require conf/machine/include/arm/arch-armv5-dsp.inc | 3 | require conf/machine/include/arm/arch-armv5-dsp.inc |
4 | 4 | ||
5 | TUNEVALID[arm926ejs] = "Enable arm926ejs specific processor optimizations" | 5 | TUNEVALID[arm926ejs] = "Enable arm926ejs specific processor optimizations" |
6 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'arm926ejs', ' -mtune=arm926ej-s', '', d)}" | 6 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'arm926ejs', ' -mcpu=arm926ej-s', '', d)}" |
7 | 7 | ||
8 | AVAILTUNES += "arm926ejs" | 8 | AVAILTUNES += "arm926ejs" |
9 | ARMPKGARCH_tune-arm926ejs = "arm926ejs" | 9 | ARMPKGARCH_tune-arm926ejs = "arm926ejs" |