summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorSaul Wold <Saul.Wold@intel.com>2010-09-14 18:06:00 -0700
committerSaul Wold <Saul.Wold@intel.com>2010-09-17 11:30:43 -0700
commitad972a787c4254bde4612710c558dcf76da079a2 (patch)
tree04474f05323961e2607f93a68759fc95843318ca /meta/lib
parent3a0b3da57b2a6d5fc7ba8b7e27697003c9b0f851 (diff)
downloadpoky-ad972a787c4254bde4612710c558dcf76da079a2.tar.gz
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>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oe/distro_check.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/distro_check.py b/meta/lib/oe/distro_check.py
index 3f61630d1a..e2ecb27cdf 100644
--- a/meta/lib/oe/distro_check.py
+++ b/meta/lib/oe/distro_check.py
@@ -274,6 +274,10 @@ def compare_in_distro_packages_list(distro_check_dir, d):
274 274
275 bb.note("Recipe: %s" % recipe_name) 275 bb.note("Recipe: %s" % recipe_name)
276 tmp = bb.data.getVar('DISTRO_PN_ALIAS', localdata, True) 276 tmp = bb.data.getVar('DISTRO_PN_ALIAS', localdata, True)
277 if tmp == "Poky" or tmp == "OpenedHand" or tmp == "Intel" or tmp == "Upstream":
278 matching_distros.append(tmp)
279 tmp = None
280
277 distro_pn_aliases = {} 281 distro_pn_aliases = {}
278 if tmp: 282 if tmp:
279 list = tmp.split(' ') 283 list = tmp.split(' ')