mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
* broken since: commit 805dd4807d322dc70cef97edd68fdb3142b60fb1 Author: Andre McCurdy <armccurdy@gmail.com> Date: Fri Aug 23 13:51:36 2019 -0700 feature-arm-thumb.inc: fix ARM_THUMB_SUFFIX * since this commit the 't' suffix is set ARM_THUMB_SUFFIX by armv4 override (which does apply for ep9312 tune) instead of armv4 in TUNE_FEATURES - so the comment in the file was no longer correct and ep9312 wasn't usable * fixes: scripts/tune/log.fake-ep9312: Error, the PACKAGE_ARCHS variable (all any noarch arm armv4 armv4t ep9312 fake_ep9312) for DEFAULTTUNE (ep9312) does not contain TUNE_PKGARCH (ep9312t). (From OE-Core rev: f23c7f23c64cbd70d38a01dfda3a4d0809b33bdd) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
13 lines
528 B
HTML
13 lines
528 B
HTML
DEFAULTTUNE ?= "ep9312"
|
|
|
|
require conf/machine/include/arm/arch-armv4.inc
|
|
|
|
TUNEVALID[ep9312] = "Enable Cirrus Logic EP9312 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'ep9312', ' -march=ep9312 -mcpu=ep9312', '', d)}"
|
|
MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'ep9312', 'armv4:', '', d)}"
|
|
|
|
AVAILTUNES += "ep9312"
|
|
ARMPKGARCH_tune-ep9312 = "ep9312"
|
|
TUNE_FEATURES_tune-ep9312 = "thumb ep9312"
|
|
PACKAGE_EXTRA_ARCHS_tune-ep9312 = "${PACKAGE_EXTRA_ARCHS_tune-armv4t} ep9312t"
|