mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
Multiple files have " ," instead of ", " in expressions. This changes them to conform to the way the rest of them are done. Found and corrected via: git ls-files | xargs sed --follow-symlinks -i 's/ ,d/, d/g' (From OE-Core rev: 36c3afd2dd8bded02ea8f255e89a09ebd75c795b) Signed-off-by: Jon Mason <jon.mason@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
650 B
PHP
16 lines
650 B
PHP
# 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"
|