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>
18 lines
890 B
PHP
18 lines
890 B
PHP
DEFAULTTUNE ?= "cortexa57"
|
|
|
|
TUNEVALID[cortexa57] = "Enable Cortex-A57 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexa57', ' -mcpu=cortex-a57', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8a.inc
|
|
|
|
# Little Endian base configs
|
|
AVAILTUNES += "cortexa57 cortexa57-crypto"
|
|
ARMPKGARCH_tune-cortexa57 = "cortexa57"
|
|
ARMPKGARCH_tune-cortexa57-crypto = "cortexa57-crypto"
|
|
TUNE_FEATURES_tune-cortexa57 = "aarch64 cortexa57 crc"
|
|
TUNE_FEATURES_tune-cortexa57-crypto = "aarch64 cortexa57 crc crypto"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexa57 = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc} cortexa57"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexa57-crypto = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto} cortexa57 cortexa57-crypto"
|
|
BASE_LIB_tune-cortexa57 = "lib64"
|
|
BASE_LIB_tune-cortexa57-crypto = "lib64"
|