mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-27 07:27:04 +00:00
9a7ab6a47e
Fix the cortex-m tunes to actually function properly. Tested with meta-zephyr on musca-b1. Change-Id: Ib797cafc4f82f6a525cf6b9c0ce4a302a9ef65c2 Signed-off-by: Jon Mason <jon.mason@arm.com>
15 lines
584 B
HTML
Executable File
15 lines
584 B
HTML
Executable File
#
|
|
# Tune Settings for Cortex-M55
|
|
#
|
|
DEFAULTTUNE ?= "cortexm55"
|
|
|
|
TUNEVALID[cortexm55] = "Enable Cortex-M55 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexm55', ' -mcpu=cortex-m55', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8-1m-main.inc
|
|
|
|
AVAILTUNES += "cortexm55"
|
|
ARMPKGARCH_tune-cortexm55 = "cortexm55"
|
|
TUNE_FEATURES_tune-cortexm55 = "${TUNE_FEATURES_tune-armv8-1m-main} cortexm55"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexm55 = "${PACKAGE_EXTRA_ARCHS_tune-armv8-1m-main} cortexm55"
|