mirror of
https://git.yoctoproject.org/poky
synced 2026-02-27 11:59:40 +01:00
These files are using a more generic DEFAULTTUNE in their targeted tune file. This is contrary to what is being done in other tune files, and this changes them to match. It is still possible to use the more generic DEFAULTTUNE in a machine's config file by simply specifying it. (From OE-Core rev: e35205a9803692d72eb92b86d740821c667b527e) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
543 B
HTML
13 lines
543 B
HTML
DEFAULTTUNE ?= "strongarm"
|
|
|
|
require conf/machine/include/arm/arch-armv4.inc
|
|
|
|
TUNEVALID[strongarm] = "Enable Strongarm 1100 series processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'strongarm', ' -mcpu=strongarm1100', '', d)}"
|
|
MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'strongarm', 'armv4:', '', d)}"
|
|
|
|
AVAILTUNES += "strongarm"
|
|
ARMPKGARCH:tune-strongarm = "strongarm"
|
|
TUNE_FEATURES:tune-strongarm = "arm strongarm"
|
|
PACKAGE_EXTRA_ARCHS:tune-strongarm = "${PACKAGE_EXTRA_ARCHS:tune-armv4} strongarm"
|