mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
* without this tune-xscale and tune-arm926ejs were both creating packages in armv5te feed, but each with different -mtune, with OEBasicHash enabled it was causing each package to rebuild with new -mtune after MACHINE switch, but that doesn't make sense with output stored in the same armv5te feed * this makes different feed for each -mtune, but more generic one to be selected with DEFAULTTUNE * tune-iwmmxt and tune-ep9312 were already using this, just move it bellow AVAILTUNES and use ARMPKGARCH_tune-foo syntax * tune-cortexr4 and tune-cortexm3 are using armv7r/armv7m as ARMPKGARCH because there isn't another tune to use the same -march (From OE-Core rev: cffda9a821a3b83a8529d643c567859e091c6846) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
432 B
C++
12 lines
432 B
C++
DEFAULTTUNE ?= "ep9312"
|
|
|
|
require conf/machine/include/arm/arch-armv4.inc
|
|
|
|
TUNEVALID[ep9312] = "Enable Intel PXA27x specific processor optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ep9312", "-march=ep9312 -mtune=ep9312", "", d)}"
|
|
|
|
AVAILTUNES += "ep9312"
|
|
ARMPKGARCH_tune-ep9312 = "ep9312"
|
|
TUNE_FEATURES_tune-ep9312 = "thumb ep9312"
|
|
PACKAGE_EXTRA_ARCHS_tune-ep9312 = "${PACKAGE_EXTRA_ARCHS_tune-armv4t} ep9312"
|