summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/tune-arm926ejs.inc
diff options
context:
space:
mode:
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