mirror of
https://git.yoctoproject.org/poky
synced 2026-03-14 11:19:42 +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
492 B
PHP
12 lines
492 B
PHP
DEFAULTTUNE ?= "ppce500mc"
|
|
|
|
require conf/machine/include/powerpc/arch-powerpc.inc
|
|
|
|
TUNEVALID[ppce500mc] = "Enable ppce500mc specific processor optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ppce500mc", "-mcpu=e500mc", "", d)}"
|
|
TUNE_PKGARCH = "${@bb.utils.contains("TUNE_FEATURES", "ppce500mc", "ppce500mc", "${PPCPKGARCH}", d)}"
|
|
|
|
AVAILTUNES += "ppce500mc"
|
|
TUNE_FEATURES_tune-ppce500mc = "m32 fpu-hard ppce500mc"
|
|
PACKAGE_EXTRA_ARCHS_tune-ppce500mc = "powerpc ppce500mc"
|