mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29: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>
17 lines
614 B
PHP
17 lines
614 B
PHP
DEFAULTTUNE ?= "ppce500"
|
|
|
|
require conf/machine/include/powerpc/arch-powerpc.inc
|
|
|
|
TUNEVALID[ppce500] = "Enable ppce500 specific processor optimizations"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "ppce500", "-mcpu=8540", "", d)}"
|
|
TUNE_PKGARCH = "${@bb.utils.contains("TUNE_FEATURES", "ppce500", "ppce500", "${PPCPKGARCH}", d)}"
|
|
|
|
TUNEVALID[spe] = "Enable SPE ABI extensions"
|
|
TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "spe", "-mabi=spe -mspe", "", d)}"
|
|
|
|
TARGET_FPU = "ppc-efs"
|
|
|
|
AVAILTUNES += "ppce500"
|
|
TUNE_FEATURES_tune-ppce500 = "m32 spe ppce500"
|
|
PACKAGE_EXTRA_ARCHS_tune-ppce500 = "ppce500"
|