mirror of
https://git.yoctoproject.org/poky
synced 2026-04-25 15:32:13 +02:00
* e.g. arm926ejs DEFAULT tune is compatible with all PACKAGE_EXTRA_ARCHS_tune-armv5te, but needs to list arm926ejs with all possible suffixes too (From OE-Core rev: ee3e85e3bdd382aca4ad8e2eece44064ee89dcff) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
576 B
PHP
15 lines
576 B
PHP
# Configurations for the Intel PXA27x Appications Processor Family.
|
|
# Please use tune-xscale for PXA255/PXA26x based processors.
|
|
|
|
DEFAULTTUNE ?= "iwmmxt"
|
|
|
|
require conf/machine/include/arm/arch-armv5-dsp.inc
|
|
|
|
TUNEVALID[iwmmxt] = "Enable Intel PXA27x specific processor optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "iwmmxt", "-march=iwmmxt -mtune=iwmmxt", "", d)}"
|
|
|
|
AVAILTUNES += "iwmmxt"
|
|
ARMPKGARCH_tune-iwmmxt = "iwmmxt"
|
|
TUNE_FEATURES_tune-iwmmxt = "thumb iwmmxt"
|
|
PACKAGE_EXTRA_ARCHS_tune-iwmmxt = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} iwmmxt iwmmxtt"
|