base.bbclass: Add compatibility package name mapping handler

This means if PKGARCHCOMPAT_ARMV7A is set, "armv7a-vfp-neon" is renamed
to be "armv7a". Other compatibility mappings can be added as needed.

(From OE-Core rev: 08c0b7060009113e8dffdef51ff6b9b4b7f28894)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-07-27 09:17:53 +01:00
parent 4a75a370fd
commit 4130931694
1 changed files with 8 additions and 0 deletions

View File

@ -133,6 +133,13 @@ def generate_git_config(e):
f.write(proxy_command)
f.close
def pkgarch_mapping(d):
# Compatibility mappings of TUNE_PKGARCH (opt in)
if d.getVar("PKGARCHCOMPAT_ARMV7A", True):
if d.getVar("TUNE_PKGARCH", True) == "armv7a-vfp-neon":
d.setVar("TUNE_PKGARCH", "armv7a")
addhandler base_eventhandler
python base_eventhandler() {
from bb import note, error, data
@ -203,6 +210,7 @@ python base_eventhandler() {
if name == "ConfigParsed":
generate_git_config(e)
pkgarch_mapping(e.data)
if not data in e.__dict__:
return