mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
* some tunes were using weak assignment for TUNE_FEATURES, unify all tunes to use normal assignment so it behaves consistently (From OE-Core rev: 0a52bd3ed23e66200401d0836aad783095e7c7a0) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
694 B
PHP
20 lines
694 B
PHP
require conf/machine/include/arm/arch-armv8.inc
|
|
|
|
DEFAULTTUNE ?= "thunderx"
|
|
AVAILTUNES += "thunderx thunderx_be"
|
|
|
|
TUNEVALID[thunderx] = "Enable instructions for Cavium ThunderX"
|
|
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'thunderx', ' -mcpu=thunderx ', '',d)}"
|
|
|
|
ARMPKGARCH_tune-thunderx ?= "thunderx"
|
|
ARMPKGARCH_tune-thunderx_be ?= "thunderx_be"
|
|
|
|
TUNE_FEATURES_tune-thunderx = "${TUNE_FEATURES_tune-aarch64} thunderx"
|
|
TUNE_FEATURES_tune-thunderx_be = "${TUNE_FEATURES_tune-thunderx} bigendian"
|
|
BASE_LIB_tune-thunderx = "lib64"
|
|
BASE_LIB_tune-thunderx_be = "lib64"
|
|
|
|
PACKAGE_EXTRA_ARCHS_tune-thunderx = "aarch64 thunderx"
|
|
PACKAGE_EXTRA_ARCHS_tune-thunderx_be = "aarch64_be thunderx_be"
|