mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +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>
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
DEFAULTTUNE ?= "mipsisa32r6el"
|
|
|
|
require conf/machine/include/mips/arch-mips.inc
|
|
|
|
TUNEVALID[mipsisa32r6] = "Enable mipsisa32r6 specific processor optimizations"
|
|
TUNECONFLICTS[mipsisa32r6] = "n64 n32"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'mipsisa32r6', ' -march=mips32r6', '', d)}"
|
|
|
|
# Base Tunes (Hard Float)
|
|
AVAILTUNES += "mipsisa32r6 mipsisa32r6el"
|
|
|
|
TUNE_FEATURES:tune-mipsisa32r6 = "o32 bigendian mipsisa32r6 fpu-hard r6"
|
|
MIPSPKGSFX_VARIANT:tune-mipsisa32r6 = "${TUNE_ARCH}"
|
|
PACKAGE_EXTRA_ARCHS:tune-mipsisa32r6 = "mipsisa32r6"
|
|
|
|
TUNE_FEATURES:tune-mipsisa32r6el = "o32 fpu-hard mipsisa32r6 r6"
|
|
MIPSPKGSFX_VARIANT:tune-mipsisa32r6el = "${TUNE_ARCH}"
|
|
PACKAGE_EXTRA_ARCHS:tune-mipsisa32r6el = "mipsisa32r6el"
|
|
|
|
# Soft Float
|
|
AVAILTUNES += "mipsisa32r6-nf mipsisa32r6el-nf"
|
|
|
|
TUNE_FEATURES:tune-mipsisa32r6-nf = "o32 bigendian mipsisa32r6 r6"
|
|
MIPSPKGSFX_VARIANT:tune-mipsisa32r6-nf = "${TUNE_ARCH}"
|
|
PACKAGE_EXTRA_ARCHS:tune-mipsisa32r6-nf = "mipsisa32r6-nf"
|
|
|
|
TUNE_FEATURES:tune-mipsisa32r6el-nf = "o32 mipsisa32r6 r6"
|
|
MIPSPKGSFX_VARIANT:tune-mipsisa32r6el-nf = "${TUNE_ARCH}"
|
|
PACKAGE_EXTRA_ARCHS:tune-mipsisa32r6el-nf = "mipsisa32r6el-nf"
|