diff options
author | Andrei Gherzan <andrei@gherzan.ro> | 2012-11-27 23:30:37 +0200 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2012-11-28 02:30:04 +0200 |
commit | 305c5259e24eaa9fb285ca983dc4f9454743fa0c (patch) | |
tree | 564b73f3b80afed3c3a8f6bec9582bb251b3d96e | |
parent | 76c6b879583509423503cbb57e3d44eeabb34174 (diff) | |
download | meta-raspberrypi-305c5259e24eaa9fb285ca983dc4f9454743fa0c.tar.gz |
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: Andrei Gherzan <andrei@gherzan.ro>
-rw-r--r-- | conf/machine/include/tune-arm1176jzf-s.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conf/machine/include/tune-arm1176jzf-s.inc b/conf/machine/include/tune-arm1176jzf-s.inc index 9d046dd..ebad588 100644 --- a/conf/machine/include/tune-arm1176jzf-s.inc +++ b/conf/machine/include/tune-arm1176jzf-s.inc | |||
@@ -7,4 +7,5 @@ TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "arm1176jzfs", "-mtune=arm | |||
7 | 7 | ||
8 | AVAILTUNES += "arm1176jzfs" | 8 | AVAILTUNES += "arm1176jzfs" |
9 | TUNE_FEATURES_tune-arm1176jzfs = "${TUNE_FEATURES_tune-armv6} arm1176jzfs" | 9 | TUNE_FEATURES_tune-arm1176jzfs = "${TUNE_FEATURES_tune-armv6} arm1176jzfs" |
10 | ARMPKGARCH_tune-arm1176jzfs = "arm1176jzfs" | ||
10 | PACKAGE_EXTRA_ARCHS_tune-arm1176jzfs = "${PACKAGE_EXTRA_ARCHS_tune-armv6}" | 11 | PACKAGE_EXTRA_ARCHS_tune-arm1176jzfs = "${PACKAGE_EXTRA_ARCHS_tune-armv6}" |