mirror of
https://git.yoctoproject.org/poky
synced 2026-02-15 21:23:04 +01:00
When enabling tune for arm926ejs, poky optionally appends suffixes for thumb and dsp support. Since sometimes arm926ejse (ARM code) and sometime arm926ejste (thumb code) is used in PACKAGE_ARCH, allow both. (From OE-Core rev: dbd7fd1cbbc3e7003a48542642acdc80dca3f514) Signed-off-by: Jens Rehsack <sno@netbsd.org> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
489 B
PHP
12 lines
489 B
PHP
DEFAULTTUNE ?= "armv5te"
|
|
|
|
require conf/machine/include/arm/arch-armv5-dsp.inc
|
|
|
|
TUNEVALID[arm926ejs] = "Enable arm926ejs specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'arm926ejs', ' -mcpu=arm926ej-s', '', d)}"
|
|
|
|
AVAILTUNES += "arm926ejs"
|
|
ARMPKGARCH_tune-arm926ejs = "arm926ejs"
|
|
TUNE_FEATURES_tune-arm926ejs = "${TUNE_FEATURES_tune-armv5te} arm926ejs"
|
|
PACKAGE_EXTRA_ARCHS_tune-arm926ejs = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} arm926ejste arm926ejse"
|