mirror of
https://git.yoctoproject.org/poky
synced 2026-03-05 23:09:39 +01:00
It looks that the Cryptography engine is mandatory in this platform. https://developer.arm.com/products/processors/cortex-a/cortex-a72 (From OE-Core rev: 0edda66097407c62821af9e98579f5fcf906e938) Signed-off-by: Randy Li <ayaka@soulik.info> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
533 B
PHP
13 lines
533 B
PHP
DEFAULTTUNE ?= "cortexa72"
|
|
|
|
TUNEVALID[cortexa72] = "Enable Cortex-A72 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexa72', ' -mcpu=cortex-a72', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8a.inc
|
|
|
|
# Little Endian base configs
|
|
AVAILTUNES += "cortexa72"
|
|
ARMPKGARCH_tune-cortexa72 = "cortexa72"
|
|
TUNE_FEATURES_tune-cortexa72 = "aarch64 cortexa72 simd crc crypto"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexa72 = "${PACKAGE_EXTRA_ARCHS_tune-armv8a-crc-crypto} cortexa72"
|