mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 20:27:58 +02: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>
20 lines
636 B
PHP
20 lines
636 B
PHP
# Settings for the GCC(1) cpu-type "quark":
|
|
#
|
|
#
|
|
#
|
|
DEFAULTTUNE ?= "i586-nlp-32"
|
|
|
|
# Include the previous tune to pull in PACKAGE_EXTRA_ARCHS
|
|
require conf/machine/include/x86/arch-x86.inc
|
|
|
|
# x86 with no lock prefix
|
|
TUNEVALID[i586-nlp] = "IA32 with Lock Prefix omitted"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'i586-nlp', ' -march=i586 -Wa,-momit-lock-prefix=yes', '', d)}"
|
|
|
|
# Quark tune feature
|
|
AVAILTUNES = "i586-nlp-32"
|
|
TUNE_FEATURES:tune-i586-nlp-32 = "${TUNE_FEATURES:tune-x86} i586-nlp"
|
|
BASE_LIB:tune-i586-nlp-32 = "lib"
|
|
TUNE_PKGARCH:tune-i586-nlp-32 = "i586-nlp-32"
|
|
PACKAGE_EXTRA_ARCHS:tune-i586-nlp-32 = "i586-nlp-32"
|