mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 07:39:49 +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>
12 lines
481 B
PHP
12 lines
481 B
PHP
DEFAULTTUNE ?= "armv6"
|
|
|
|
require conf/machine/include/arm/arch-armv6.inc
|
|
|
|
TUNEVALID[arm1136jfs] = "Enable arm1136jfs specific processor optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "arm1136jfs", "-mtune=arm1136jf-s", "", d)}"
|
|
|
|
AVAILTUNES += "arm1136jfs"
|
|
ARMPKGARCH_tune-arm1136jfs = "arm1136jfs"
|
|
TUNE_FEATURES_tune-arm1136jfs = "${TUNE_FEATURES_tune-armv6} arm1136jfs"
|
|
PACKAGE_EXTRA_ARCHS_tune-arm1136jfs = "${PACKAGE_EXTRA_ARCHS_tune-armv6} arm1136jfs-vfp"
|