mirror of
https://git.yoctoproject.org/poky
synced 2026-02-26 11:29:40 +01:00
The setting is to modify TUNE_PKGARCH which is filled with TUNE_PKGARCH_64 or TUNE_PKGARCH_32 in arm-arch64.inc This lets higher up tune files for arm64 SOCs override them if needed, this can help building multiple armv8 machines with different tunes in same workspace. No need to set TUNE_PKGARCH in tune files as it is synthesized from ARMPKGARCH Add ARMPKGARCH for aarch64 tunes (From OE-Core rev: 08433cc58abf0cf3e42b22d20870a50287cfb8bc) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
576 B
PHP
14 lines
576 B
PHP
DEFAULTTUNE ?= "cortexa55"
|
|
|
|
TUNEVALID[cortexa55] = "Enable Cortex-A55 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexa55', ' -mcpu=cortex-a55', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8a.inc
|
|
|
|
# Little Endian base configs
|
|
AVAILTUNES += "cortexa55"
|
|
ARMPKGARCH_tune-cortexa55 = "cortexa55"
|
|
TUNE_FEATURES_tune-cortexa55 = "aarch64 cortexa55 crc crypto"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexa55 = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto} cortexa55"
|
|
BASE_LIB_tune-cortexa55 = "lib64"
|