summaryrefslogtreecommitdiffstats
path: root/meta/conf/machine
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2012-02-02 14:00:34 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-08 00:50:21 +0000
commit50a097be169f4eb0bfbef181c11bd4afe8ad127b (patch)
treeddaef0ace7d1ccd092468e51247c6e2c7da15467 /meta/conf/machine
parentcb89d43473a91ff4cb2447d642fcd9308d7366e3 (diff)
downloadpoky-50a097be169f4eb0bfbef181c11bd4afe8ad127b.tar.gz
tune-mips32.inc: Add mips32-nf and mips32el-nf
tune-mips32.inc only lists mips32 CPUs with hardware FPU. Extend it to list CPUs without hardware FPU, too. (From OE-Core rev: 26630a9f37b04e215eff9b8e63414b6b2066d6fa) Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine')
-rw-r--r--meta/conf/machine/include/tune-mips32.inc6
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-mips32.inc b/meta/conf/machine/include/tune-mips32.inc
index 4a5f0facf6..45d865e381 100644
--- a/meta/conf/machine/include/tune-mips32.inc
+++ b/meta/conf/machine/include/tune-mips32.inc
@@ -6,9 +6,13 @@ TUNEVALID[mips32] = "Enable mips32 specific processor optimizations"
6TUNE_CONFLICTS[mips32] = "n64 n32" 6TUNE_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" 9AVAILTUNES += "mips32 mips32el mips32-nf mips32el-nf"
10TUNE_FEATURES_tune-mips32 = "${TUNE_FEATURES_tune-mips} mips32" 10TUNE_FEATURES_tune-mips32 = "${TUNE_FEATURES_tune-mips} mips32"
11PACKAGE_EXTRA_ARCHS_tune-mips32 = "mips" 11PACKAGE_EXTRA_ARCHS_tune-mips32 = "mips"
12TUNE_FEATURES_tune-mips32el = "${TUNE_FEATURES_tune-mipsel} mips32" 12TUNE_FEATURES_tune-mips32el = "${TUNE_FEATURES_tune-mipsel} mips32"
13PACKAGE_EXTRA_ARCHS_tune-mips32el = "mipsel" 13PACKAGE_EXTRA_ARCHS_tune-mips32el = "mipsel"
14TUNE_FEATURES_tune-mips32-nf = "${TUNE_FEATURES_tune-mips-nf} mips32"
15PACKAGE_EXTRA_ARCHS_tune-mips32-nf = "mips-nf"
16TUNE_FEATURES_tune-mips32el-nf = "${TUNE_FEATURES_tune-mipsel-nf} mips32"
17PACKAGE_EXTRA_ARCHS_tune-mips32el-nf = "mipsel-nf"
14 18