diff options
author | Armin Kuster <akuster@mvista.com> | 2015-10-02 07:28:33 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-07 00:09:11 +0100 |
commit | 37c54af056747f3091ac940f80ee32a42287fc44 (patch) | |
tree | 909c33dc9e8b6d0f12ba85583c8462bb33f13c35 /meta/conf | |
parent | a0e7311b207e6ea156c89c22388695192ba57f43 (diff) | |
download | poky-37c54af056747f3091ac940f80ee32a42287fc44.tar.gz |
ThunderX: Add initial tune file
changed upper case "X" to lower case "x"
(From OE-Core rev: ff8bf4907ff3b1a9c479fe158c31607da07f9b55)
Signed-off-by: Armin Kuster <akuster@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/machine/include/tune-thunderx.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/conf/machine/include/tune-thunderx.inc b/meta/conf/machine/include/tune-thunderx.inc new file mode 100644 index 0000000000..40de61dc2e --- /dev/null +++ b/meta/conf/machine/include/tune-thunderx.inc | |||
@@ -0,0 +1,19 @@ | |||
1 | require conf/machine/include/arm/arch-armv8.inc | ||
2 | |||
3 | DEFAULTTUNE ?= "thunderx" | ||
4 | AVAILTUNES += "thunderx thunderx_be" | ||
5 | |||
6 | TUNEVALID[thunderx] = "Enable instructions for Cavium ThunderX" | ||
7 | |||
8 | TUNE_CCARGS .= "${@bb.utils.contains("TUNE_FEATURES", "thunderx", " -mcpu=thunderx ", "",d)}" | ||
9 | |||
10 | ARMPKGARCH_tune-thunderx ?= "thunderx" | ||
11 | ARMPKGARCH_tune-thunderx_be ?= "thunderx_be" | ||
12 | |||
13 | TUNE_FEATURES_tune-thunderx ?= "${TUNE_FEATURES_tune-aarch64} thunderx" | ||
14 | TUNE_FEATURES_tune-thunderx_be ?= "${TUNE_FEATURES_tune-thunderx} bigendian" | ||
15 | BASE_LIB_tune-thunderx = "lib64" | ||
16 | BASE_LIB_tune-thunderx_be = "lib64" | ||
17 | |||
18 | PACKAGE_EXTRA_ARCHS_tune-thunderx = "aarch64 thunderx" | ||
19 | PACKAGE_EXTRA_ARCHS_tune-thunderx_be = "aarch64_be thunderx_be" | ||