summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine/include/tune-mips32.inc
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2012-03-30 14:29:25 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-04 17:17:54 +0100
commitd328ae22b71f35dd746bd095891100be39925f68 (patch)
tree5d15b3486c30185ff9d2bdf0d711c8e8f1145680 /meta/conf/machine/include/tune-mips32.inc
parentd6e7ebb20934a4c4822898b4f4adfcde7f7f4049 (diff)
downloadpoky-d328ae22b71f35dd746bd095891100be39925f68.tar.gz
conf/machine/include: Cleanup MIPS tunings to match README
Cleanup the MIPS tunings to match the new tuning README file. Also add a MIPS specific README file to explain the MIPS specifical architectural issues. Finally correct the variant configurations within the tune-mips32.inc. (From OE-Core rev: efbfa2ace3362393a20340af93e8dcab17a8619a) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/tune-mips32.inc')
-rw-r--r--meta/conf/machine/include/tune-mips32.inc17
1 files changed, 12 insertions, 5 deletions
diff --git a/meta/conf/machine/include/tune-mips32.inc b/meta/conf/machine/include/tune-mips32.inc
index 45d865e381..93ed5ee793 100644
--- a/meta/conf/machine/include/tune-mips32.inc
+++ b/meta/conf/machine/include/tune-mips32.inc
@@ -7,12 +7,19 @@ TUNE_CONFLICTS[mips32] = "n64 n32"
7TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "mips32", "-march=mips32", "", d)}" 7TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "mips32", "-march=mips32", "", d)}"
8 8
9AVAILTUNES += "mips32 mips32el mips32-nf mips32el-nf" 9AVAILTUNES += "mips32 mips32el mips32-nf mips32el-nf"
10
10TUNE_FEATURES_tune-mips32 = "${TUNE_FEATURES_tune-mips} mips32" 11TUNE_FEATURES_tune-mips32 = "${TUNE_FEATURES_tune-mips} mips32"
11PACKAGE_EXTRA_ARCHS_tune-mips32 = "mips" 12MIPSPKGSFX_VARIANT_tune-mips32 = "mips32"
13PACKAGE_EXTRA_ARCHS_tune-mips32 = "mips mips32"
14
12TUNE_FEATURES_tune-mips32el = "${TUNE_FEATURES_tune-mipsel} mips32" 15TUNE_FEATURES_tune-mips32el = "${TUNE_FEATURES_tune-mipsel} mips32"
13PACKAGE_EXTRA_ARCHS_tune-mips32el = "mipsel" 16MIPSPKGSFX_VARIANT_tune-mips32el = "mips32el"
17PACKAGE_EXTRA_ARCHS_tune-mips32el = "mipsel mips32el"
18
14TUNE_FEATURES_tune-mips32-nf = "${TUNE_FEATURES_tune-mips-nf} mips32" 19TUNE_FEATURES_tune-mips32-nf = "${TUNE_FEATURES_tune-mips-nf} mips32"
15PACKAGE_EXTRA_ARCHS_tune-mips32-nf = "mips-nf" 20MIPSPKGSFX_VARIANT_tune-mips32-nf = "mips32"
16TUNE_FEATURES_tune-mips32el-nf = "${TUNE_FEATURES_tune-mipsel-nf} mips32" 21PACKAGE_EXTRA_ARCHS_tune-mips32-nf = "mips-nf mips32-nf"
17PACKAGE_EXTRA_ARCHS_tune-mips32el-nf = "mipsel-nf"
18 22
23TUNE_FEATURES_tune-mips32el-nf = "${TUNE_FEATURES_tune-mipsel-nf} mips32"
24MIPSPKGSFX_VARIANT_tune-mips32el-nf = "mips32el"
25PACKAGE_EXTRA_ARCHS_tune-mips32el-nf = "mipsel-nf mips32el-nf"