diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-25 19:03:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-27 15:45:48 +0100 |
commit | 6afd21bced6513986f27d8cbc7d83bb2d804b5b0 (patch) | |
tree | 69e2b6c2fde4c15d948f9a8f798a30926f858600 /meta/conf/machine/include/tune-strongarm1100.inc | |
parent | 30ddd02277d4513e2649ed168a513205e244bcb1 (diff) | |
download | poky-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-strongarm1100.inc')
-rw-r--r-- | meta/conf/machine/include/tune-strongarm1100.inc | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/meta/conf/machine/include/tune-strongarm1100.inc b/meta/conf/machine/include/tune-strongarm1100.inc index 2b76069208..66bab8e495 100644 --- a/meta/conf/machine/include/tune-strongarm1100.inc +++ b/meta/conf/machine/include/tune-strongarm1100.inc | |||
@@ -1,9 +1,12 @@ | |||
1 | require conf/machine/include/arm/arch-arm.inc | 1 | DEFAULTTUNE ?= "strongarm" |
2 | 2 | ||
3 | TUNE_PKGARCH = "arm" | 3 | require conf/machine/include/arm/arch-armv4.inc |
4 | 4 | ||
5 | # This machine lists common configuration options for Strongarm 1100 devices | 5 | TUNEVALID[strongarm] = "Enable Strongarm 1100 series processor optimizations" |
6 | # NOTE: The Zaurus Collie also has a Strongarm processor, but uses the 1110 type | 6 | TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "strongarm", "-mtune=strongarm1100", "", d)}" |
7 | |||
8 | AVAILTUNES += "strongarm" | ||
9 | TUNE_FEATURES_tune-strongarm = "${TUNE_FEATURES_tune-armv4} strongarm" | ||
10 | PACKAGE_EXTRA_ARCHS_tune-strongarm = "${PACKAGE_EXTRA_ARCHS_tune-armv4}" | ||
7 | 11 | ||
8 | TUNE_CCARGS = "-march=armv4 -mtune=strongarm1100" | ||
9 | 12 | ||