mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 21:32:13 +02: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>
13 lines
539 B
HTML
13 lines
539 B
HTML
DEFAULTTUNE ?= "armv4"
|
|
|
|
require conf/machine/include/arm/arch-armv4.inc
|
|
|
|
TUNEVALID[strongarm] = "Enable Strongarm 1100 series processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'strongarm', ' -mcpu=strongarm1100', '', d)}"
|
|
MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'strongarm', 'armv4:', '', d)}"
|
|
|
|
AVAILTUNES += "strongarm"
|
|
ARMPKGARCH_tune-strongarm = "strongarm"
|
|
TUNE_FEATURES_tune-strongarm = "arm strongarm"
|
|
PACKAGE_EXTRA_ARCHS_tune-strongarm = "${PACKAGE_EXTRA_ARCHS_tune-armv4} strongarm"
|