Distro Tracking: Updated and add Poky Alias info

distro_check.py: Add DISTRO_PN_ALIAS check for Poky, OpenedHand,
                 Intel and Upstream, to mark packages that are
                 not in known upstreams
distro_tracking_fields.inc:
                Merged private files into 1 master file
                Added additional Maintainer Info
                Added Distro Alias information for Poky and OpenedHand

Signed-off-by: Saul Wold <Saul.Wold@intel.com>
This commit is contained in:
Saul Wold
2010-09-14 18:06:00 -07:00
parent 3a0b3da57b
commit ad972a787c
5 changed files with 5544 additions and 32 deletions

View File

@@ -274,6 +274,10 @@ def compare_in_distro_packages_list(distro_check_dir, d):
bb.note("Recipe: %s" % recipe_name)
tmp = bb.data.getVar('DISTRO_PN_ALIAS', localdata, True)
if tmp == "Poky" or tmp == "OpenedHand" or tmp == "Intel" or tmp == "Upstream":
matching_distros.append(tmp)
tmp = None
distro_pn_aliases = {}
if tmp:
list = tmp.split(' ')