summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/tune-arm926ejs.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-25 19:03:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-27 15:45:48 +0100
commit6afd21bced6513986f27d8cbc7d83bb2d804b5b0 (patch)
tree69e2b6c2fde4c15d948f9a8f798a30926f858600 /meta/conf/machine/include/tune-arm926ejs.inc
parent30ddd02277d4513e2649ed168a513205e244bcb1 (diff)
downloadpoky-6afd21bced6513986f27d8cbc7d83bb2d804b5b0.tar.gz
Add ARM tune file overhaul based largely on work from Mark Hatle
(From OE-Core rev: 789dcb8e68a2ab9784ac10ab36815010c61af2fc) 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.inc18
1 files changed, 10 insertions, 8 deletions
diff --git a/meta/conf/machine/include/tune-arm926ejs.inc b/meta/conf/machine/include/tune-arm926ejs.inc
index 543ab62c70..7f2cc4e659 100644
--- a/meta/conf/machine/include/tune-arm926ejs.inc
+++ b/meta/conf/machine/include/tune-arm926ejs.inc
@@ -1,9 +1,11 @@
1require conf/machine/include/arm/arch-arm.inc 1DEFAULTTUNE ?= "arm926ejs"
2 2
3TUNE_PKGARCH = "armv5te" 3require conf/machine/include/arm/arch-armv5-dsp.inc
4PACKAGE_EXTRA_ARCHS = "arm armv4 armv4t armv5te" 4
5# For gcc 3.x you need: 5TUNEVALID[arm926ejs] = "Enable arm926ejs specific processor optimizations"
6#TUNE_CCARGS = "-march=armv5te -mtune=arm926ejs" 6TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "arm926ejs", "-mtune=arm926ej-s", "", d)}"
7# For gcc 4.x you need: 7
8TUNE_CCARGS = "-march=armv5te -mtune=arm926ej-s" 8AVAILTUNES += "arm926ejs"
9TUNE_FEATURES_tune-arm926ejs = "${TUNE_FEATURES_tune-armv5te} arm926ejs"
10PACKAGE_EXTRA_ARCHS_tune-arm926ejs = "${PACKAGE_EXTRA_ARCHS_tune-armv5te}"
9 11