mirror of
https://git.yoctoproject.org/poky
synced 2026-03-04 06:19:40 +01:00
Move all of the tune files found in conf/machine/include into their respective architecture directories in that same location. All references to these will need to be updated. So, change the relevant ones for this tree in this commit as well. For the ARM tunes, nest them one further into armv8a, armv8m, etc. and rename some to make them uniform with the rest of the tunes. (From OE-Core rev: b6f15209bcfff953cce69da97a93f9ddff141ced) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
729 B
PHP
20 lines
729 B
PHP
DEFAULTTUNE ?= "thunderx"
|
|
AVAILTUNES += "thunderx thunderx_be"
|
|
|
|
TUNEVALID[thunderx] = "Enable instructions for Cavium ThunderX"
|
|
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'thunderx', ' -mcpu=thunderx', '',d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8a.inc
|
|
|
|
ARMPKGARCH:tune-thunderx ?= "thunderx"
|
|
ARMPKGARCH:tune-thunderx_be ?= "thunderx"
|
|
|
|
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 = "${PACKAGE_EXTRA_ARCHS:tune-armv8a-crc-crypto} thunderx"
|
|
PACKAGE_EXTRA_ARCHS:tune-thunderx_be = "aarch64_be thunderx_be"
|