mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
462 B
PHP
12 lines
462 B
PHP
DEFAULTTUNE ?= "cortexm0"
|
|
require conf/machine/include/arm/arch-armv6m.inc
|
|
|
|
TUNEVALID[cortexm0] = "Enable Cortex-M0 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'cortexm0', ' -mcpu=cortex-m0', '', d)}"
|
|
AVAILTUNES += "cortexm0"
|
|
|
|
ARMPKGARCH:tune-cortexm0 = "cortexm0"
|
|
TUNE_FEATURES:tune-cortexm0 = "${TUNE_FEATURES:tune-armv6m} cortexm0"
|
|
|
|
PACKAGE_EXTRA_ARCHS:tune-cortexm0 = "${PACKAGE_EXTRA_ARCHS:tune-armv6m} cortexm0"
|