From 2c300bccbdd7eb3572d0ecab0f10f291b290d359 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 11 Sep 2012 17:05:45 +0000 Subject: arch-arm: define different ARMPKGARCH when different CCARGS are used * without this tune-xscale and tune-arm926ejs were both creating packages in armv5te feed, but each with different -mtune, with OEBasicHash enabled it was causing each package to rebuild with new -mtune after MACHINE switch, but that doesn't make sense with output stored in the same armv5te feed * this makes different feed for each -mtune, but more generic one to be selected with DEFAULTTUNE * tune-iwmmxt and tune-ep9312 were already using this, just move it bellow AVAILTUNES and use ARMPKGARCH_tune-foo syntax * tune-cortexr4 and tune-cortexm3 are using armv7r/armv7m as ARMPKGARCH because there isn't another tune to use the same -march (From OE-Core rev: cffda9a821a3b83a8529d643c567859e091c6846) Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- meta/conf/machine/include/tune-cortexa9.inc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'meta/conf/machine/include/tune-cortexa9.inc') diff --git a/meta/conf/machine/include/tune-cortexa9.inc b/meta/conf/machine/include/tune-cortexa9.inc index a8e27ca87d..e2f78d3aa7 100644 --- a/meta/conf/machine/include/tune-cortexa9.inc +++ b/meta/conf/machine/include/tune-cortexa9.inc @@ -7,6 +7,9 @@ TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "cortexa9", "-mtune=cortex # Little Endian base configs AVAILTUNES += "cortexa9 cortexa9t cortexa9-neon" +ARMPKGARCH_tune-cortexa9 = "cortexa9" +ARMPKGARCH_tune-cortexa9t = "cortexa9t" +ARMPKGARCH_tune-cortexa9-neon = "cortexa9-neon" TUNE_FEATURES_tune-cortexa9 = "${TUNE_FEATURES_tune-armv7a} cortexa9" TUNE_FEATURES_tune-cortexa9t = "${TUNE_FEATURES_tune-armv7at} cortexa9" TUNE_FEATURES_tune-cortexa9-neon = "${TUNE_FEATURES_tune-armv7a-neon} cortexa9" @@ -16,6 +19,9 @@ PACKAGE_EXTRA_ARCHS_tune-cortexa9-neon = "${PACKAGE_EXTRA_ARCHS_tune-armv7a-neon # VFP Tunes AVAILTUNES += "cortexa9hf cortexa9thf cortexa9hf-neon" +ARMPKGARCH_tune-cortexa9hf = "cortexa9hf" +ARMPKGARCH_tune-cortexa9thf = "cortexa9thf" +ARMPKGARCH_tune-cortexa9hf-neon = "cortexa9hf-neon" TUNE_FEATURES_tune-cortexa9hf ?= "${TUNE_FEATURES_tune-armv7ahf} cortexa9" TUNE_FEATURES_tune-cortexa9thf ?= "${TUNE_FEATURES_tune-armv7athf} cortexa9" TUNE_FEATURES_tune-cortexa9hf-neon ?= "${TUNE_FEATURES_tune-armv7ahf-neon} cortexa9" -- cgit v1.2.3-54-g00ecf