mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
We need to ensure only one value ends up in TUNE_PKGARCH rather than several. This change ensures consistency accross all the PPC tune files and that they correctly inherit the core value but also allow it to be overwritten. (From OE-Core rev: f9a8b719dd3fc7593a509c8f288caf1486add2f8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 lines
495 B
PHP
12 lines
495 B
PHP
DEFAULTTUNE ?= "ppce300c2"
|
|
|
|
require conf/machine/include/powerpc/arch-powerpc.inc
|
|
|
|
TUNEVALID[ppce300c2] = "Enable ppce300c2 specific processor optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ppce300c2", "-mcpu=e300c2", "", d)}"
|
|
TUNE_PKGARCH = "${@bb.utils.contains("TUNE_FEATURES", "ppce300c2", "ppce300c2", "${PPCPKGARCH}", d)}"
|
|
|
|
AVAILTUNES += "ppce300c2"
|
|
TUNE_FEATURES_tune-ppce300c2 = "m32 fpu-soft ppce300c2"
|
|
PACKAGE_EXTRA_ARCHS_tune-ppce300c2 = "powerpc-nf ppce300c2"
|