mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +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>
16 lines
650 B
HTML
16 lines
650 B
HTML
# Configurations for the Intel PXA27x Appications Processor Family.
|
|
# Please use tune-xscale for PXA255/PXA26x based processors.
|
|
|
|
DEFAULTTUNE ?= "iwmmxt"
|
|
|
|
require conf/machine/include/arm/arch-armv5-dsp.inc
|
|
|
|
TUNEVALID[iwmmxt] = "Enable Intel PXA27x specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'iwmmxt', ' -mcpu=iwmmxt', '', d)}"
|
|
MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'iwmmxt', 'armv5:', '', d)}"
|
|
|
|
AVAILTUNES += "iwmmxt"
|
|
ARMPKGARCH:tune-iwmmxt = "iwmmxt"
|
|
TUNE_FEATURES:tune-iwmmxt = "thumb iwmmxt"
|
|
PACKAGE_EXTRA_ARCHS:tune-iwmmxt = "${PACKAGE_EXTRA_ARCHS:tune-armv5te} iwmmxt iwmmxtt"
|