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>
14 lines
623 B
PHP
14 lines
623 B
PHP
DEFAULTTUNE ?= "armv5te"
|
|
|
|
require conf/machine/include/arm/arch-armv5-dsp.inc
|
|
|
|
TUNEVALID[arm926ejs] = "Enable arm926ejs specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'arm926ejs', ' -mcpu=arm926ej-s', '', d)}"
|
|
MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'arm926ejs', 'armv5:', '', d)}"
|
|
|
|
AVAILTUNES += "arm926ejs"
|
|
ARMPKGARCH_tune-arm926ejs = "arm926ejs"
|
|
# mcpu is used so don't use armv5te as we don't want march
|
|
TUNE_FEATURES_tune-arm926ejs = "arm thumb dsp arm926ejs"
|
|
PACKAGE_EXTRA_ARCHS_tune-arm926ejs = "${PACKAGE_EXTRA_ARCHS_tune-armv5te} arm926ejste arm926ejse"
|