mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 23:39:40 +01:00
Defaulting to softfp probably isn't the best choice anymore, especially as there are now ARM BSP layers which leave DEFAULTTUNE entirely up to the distro: https://lists.yoctoproject.org/pipermail/yocto/2017-February/034637.html Also add 't' to the ARMv7 default DEFAULTTUNEs, since there's no clear reason to default to ignoring ARM_INSTRUCTION_SET for ARMv7. (From OE-Core rev: 2b3ae58f5eaecc8474761c543ff5347aa0e3c4c8) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
483 B
PHP
12 lines
483 B
PHP
DEFAULTTUNE ?= "armv6hf"
|
|
|
|
require conf/machine/include/arm/arch-armv6.inc
|
|
|
|
TUNEVALID[arm1136jfs] = "Enable arm1136jfs specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'arm1136jfs', ' -mcpu=arm1136jf-s', '', d)}"
|
|
|
|
AVAILTUNES += "arm1136jfs"
|
|
ARMPKGARCH_tune-arm1136jfs = "arm1136jfs"
|
|
TUNE_FEATURES_tune-arm1136jfs = "${TUNE_FEATURES_tune-armv6} arm1136jfs"
|
|
PACKAGE_EXTRA_ARCHS_tune-arm1136jfs = "${PACKAGE_EXTRA_ARCHS_tune-armv6} arm1136jfs-vfp"
|