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
556 B
PHP
Executable File
15 lines
556 B
PHP
Executable File
#
|
|
# Tune Settings for Cortex-M7
|
|
#
|
|
DEFAULTTUNE ?= "cortexm7"
|
|
|
|
TUNEVALID[cortexm7] = "Enable Cortex-M7 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexm7', ' -mcpu=cortex-m7', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv7em.inc
|
|
|
|
AVAILTUNES += "cortexm7"
|
|
ARMPKGARCH_tune-cortexm7 = "cortexm7"
|
|
TUNE_FEATURES_tune-cortexm7 = "${TUNE_FEATURES_tune-armv7em} cortexm7"
|
|
PACKAGE_EXTRA_ARCHS_tune-cortexm7 = "${PACKAGE_EXTRA_ARCHS_tune-armv7em} cortexm7"
|