diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-01-09 21:17:24 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-12 08:43:55 +0000 |
commit | 0341a3c44e511d3246096edd3009432805e57b89 (patch) | |
tree | d01de9b942eed5270e9f7f6a502064f977afc35c | |
parent | 90df6758a9f8753c646b129aa912e3849bf4c987 (diff) | |
download | openembedded-core-0341a3c44e511d3246096edd3009432805e57b89.tar.gz openembedded-core-0341a3c44e511d3246096edd3009432805e57b89.tar.bz2 openembedded-core-0341a3c44e511d3246096edd3009432805e57b89.zip |
base.bbclass: drop legacy armv7a-vfp-neon TUNE_PKGARCH renaming
ARM specific TUNE_PKGARCH renaming was adding in 2011 handle the
transition from armv7a -> armv7a-vfp-neon:
http://git.openembedded.org/openembedded-core/commit/?id=08c0b7060009113e8dffdef51ff6b9b4b7f28894
Active package feeds should now have long since updated to the new
naming. For example, Angstrom stopped using on the legacy naming in
2012:
https://github.com/Angstrom-distribution/meta-angstrom/commit/2e33fb5bd08edda6457dd211f4ff4ec4aad9d85d
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/base.bbclass | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 1a3272052c..6fe611489f 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -170,12 +170,6 @@ python base_do_unpack() { bb.fatal(str(e)) } -def pkgarch_mapping(d): - # Compatibility mappings of TUNE_PKGARCH (opt in) - if d.getVar("PKGARCHCOMPAT_ARMV7A"): - if d.getVar("TUNE_PKGARCH") == "armv7a-vfp-neon": - d.setVar("TUNE_PKGARCH", "armv7a") - def get_layers_branch_rev(d): layers = (d.getVar("BBLAYERS") or "").split() layers_branch_rev = ["%-20s = \"%s:%s\"" % (os.path.basename(i), \ @@ -228,7 +222,6 @@ python base_eventhandler() { if not d.getVar("NATIVELSBSTRING", False): d.setVar("NATIVELSBSTRING", lsb_distro_identifier(d)) d.setVar('BB_VERSION', bb.__version__) - pkgarch_mapping(d) oe.utils.features_backfill("DISTRO_FEATURES", d) oe.utils.features_backfill("MACHINE_FEATURES", d) # Works with the line in layer.conf which changes PATH to point here |