diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-10-03 09:33:16 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-03 17:37:24 +0100 |
commit | ae9dbd0e1e26ba2b35cbd08ec731aee62adedc23 (patch) | |
tree | f8cb72d546a0f9c1c3b5e2ebfbac5eb3ccbf3e00 /meta/lib | |
parent | c26542eb4e8707b9639ec309a44809a728839db8 (diff) | |
download | openembedded-core-ae9dbd0e1e26ba2b35cbd08ec731aee62adedc23.tar.gz openembedded-core-ae9dbd0e1e26ba2b35cbd08ec731aee62adedc23.tar.bz2 openembedded-core-ae9dbd0e1e26ba2b35cbd08ec731aee62adedc23.zip |
distrodata: Update distrocheck functions
Fix the distro check functions for the change of nativesdk
being a suffix to a prefix. Also added crosssdk as another
case for converting to PN for matching in the distro_tracking
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/distro_check.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/lib/oe/distro_check.py b/meta/lib/oe/distro_check.py index 455135e650..ad13d5e492 100644 --- a/meta/lib/oe/distro_check.py +++ b/meta/lib/oe/distro_check.py @@ -288,6 +288,12 @@ def compare_in_distro_packages_list(distro_check_dir, d): bb.data.update_data(localdata) recipe_name = pnstripped[0] + if pn.startswith("nativesdk-"): + pnstripped = pn.split("nativesdk-") + localdata.setVar('OVERRIDES', "pn-" + pnstripped[1] + ":" + d.getVar('OVERRIDES', True)) + bb.data.update_data(localdata) + recipe_name = pnstripped[1] + if pn.find("-cross") != -1: pnstripped = pn.split("-cross") localdata.setVar('OVERRIDES', "pn-" + pnstripped[0] + ":" + d.getVar('OVERRIDES', True)) |