mirror of
https://git.yoctoproject.org/poky
synced 2026-03-11 17:59:39 +01:00
Move all of the tune files found in conf/machine/include into their respective architecture directories in that same location. All references to these will need to be updated. So, change the relevant ones for this tree in this commit as well. For the ARM tunes, nest them one further into armv8a, armv8m, etc. and rename some to make them uniform with the rest of the tunes. (From OE-Core rev: b6f15209bcfff953cce69da97a93f9ddff141ced) Signed-off-by: Jon Mason <jdmason@kudzu.us> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
15 lines
479 B
PHP
15 lines
479 B
PHP
DEFAULTTUNE ?= "i586"
|
|
|
|
require conf/machine/include/x86/arch-x86.inc
|
|
|
|
# Extra tune features
|
|
TUNEVALID[i586] = "Enable i586 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'i586', ' -march=i586', '', d)}"
|
|
|
|
# Extra tune selections
|
|
AVAILTUNES += "i586"
|
|
TUNE_FEATURES:tune-i586 = "${TUNE_FEATURES:tune-x86} i586"
|
|
BASE_LIB:tune-i586 = "lib"
|
|
TUNE_PKGARCH:tune-i586 = "i586"
|
|
PACKAGE_EXTRA_ARCHS:tune-i586 = "${PACKAGE_EXTRA_ARCHS:tune-x86} i586"
|