mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00:00
armv8/tunes: Set TUNE_PKGARCH_64 based on ARMPKGARCH
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>
This commit is contained in:
@@ -12,6 +12,8 @@ ARMPKGARCH_tune-aarch64 ?= "aarch64"
|
||||
ARMPKGARCH_tune-aarch64_be ?= "aarch64_be"
|
||||
TUNE_FEATURES_tune-aarch64 = "aarch64"
|
||||
TUNE_FEATURES_tune-aarch64_be = "${TUNE_FEATURES_tune-aarch64} bigendian"
|
||||
TUNE_PKGARCH_64_tune-aarch64 = "aarch64"
|
||||
TUNE_PKGARCH_64_tune-aarch64_be = "aarch64_be"
|
||||
BASE_LIB_tune-aarch64 = "lib64"
|
||||
BASE_LIB_tune-aarch64_be = "lib64"
|
||||
|
||||
@@ -20,7 +22,7 @@ PACKAGE_EXTRA_ARCHS_tune-aarch64_be = "aarch64_be"
|
||||
|
||||
ARMPKGSFX_ENDIAN_64 = "${@bb.utils.contains('TUNE_FEATURES', 'bigendian', '_be', '', d)}"
|
||||
TUNE_ARCH_64 = "aarch64${ARMPKGSFX_ENDIAN_64}"
|
||||
TUNE_PKGARCH_64 = "aarch64${ARMPKGSFX_ENDIAN_64}"
|
||||
TUNE_PKGARCH_64 = "${ARMPKGARCH}${ARMPKGSFX_ENDIAN_64}"
|
||||
ABIEXTENSION_64 = ""
|
||||
TARGET_FPU_64 = ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user