mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
In tune-sh3, tune-xscale, and tune-sh4, several FEATURES lines referred to nonexistent features like "sh3eb" when they should have referred to "sh3 bigendian" or the like. Caught by the TUNEVALID sanity check. (From OE-Core rev: e63fb1e9918bff6f91bbab09b29248ab8b649e84) Signed-off-by: Peter Seebach <peter.seebach@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
498 B
PHP
18 lines
498 B
PHP
DEFAULTTUNE ?= "sh3"
|
|
|
|
require conf/machine/include/sh/arch-sh.inc
|
|
|
|
TUNEVALID[sh3] = "Enable SH3 optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "sh3", "-m3", "", d)}"
|
|
|
|
AVAILTUNES += "sh3 sh3eb"
|
|
TUNE_FEATURES_tune-sh3 = "sh3"
|
|
TUNE_ARCH_tune-sh3 = "sh3"
|
|
TUNE_PKGARCH_tune-sh3 = "sh3"
|
|
PACKAGE_EXTRA_ARCHS_tune-sh3 = "sh sh3"
|
|
|
|
TUNE_FEATURES_tune-sh3eb = "sh3 bigendian"
|
|
TUNE_ARCH_tune-sh3eb = "sh3eb"
|
|
TUNE_PKGARCH_tune-sh3eb = "sh3eb"
|
|
PACKAGE_EXTRA_ARCHS_tune-sh3eb = "sheb sh3eb"
|