mirror of
https://git.yoctoproject.org/poky
synced 2026-03-01 21:09:39 +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>
20 lines
919 B
HTML
20 lines
919 B
HTML
DEFAULTTUNE ?= "armv5te"
|
|
|
|
require conf/machine/include/arm/arch-armv5-dsp.inc
|
|
|
|
TUNEVALID[xscale] = "Enable PXA255/PXA26x Xscale specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'xscale', ' -mcpu=xscale', '', d)}"
|
|
MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'xscale', 'armv5:', '', d)}"
|
|
|
|
AVAILTUNES += "xscale"
|
|
ARMPKGARCH_tune-xscale = "xscale"
|
|
# mcpu is used so don't use armv5te as we don't want march
|
|
TUNE_FEATURES_tune-xscale = "arm thumb dsp xscale"
|
|
PACKAGE_EXTRA_ARCHS_tune-xscale = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} xscale xscalet xscalee xscalete"
|
|
|
|
AVAILTUNES += "xscale-be"
|
|
ARMPKGARCH_tune-xscale-be = "xscale"
|
|
# mcpu is used so don't use armv5te as we don't want march
|
|
TUNE_FEATURES_tune-xscale-be = "${TUNE_FEATURES_tune-xscale} bigendian"
|
|
PACKAGE_EXTRA_ARCHS_tune-xscale-be = "${PACKAGE_EXTRA_ARCHS_tune-armv5teb} xscaleb xscaletb xscaleeb xscaleteb"
|