From c3f3fed1b397b6ee6d44e7d39e63d084e4a88e30 Mon Sep 17 00:00:00 2001 From: Alexandru DAMIAN Date: Wed, 29 Jan 2014 17:21:50 +0000 Subject: toaster.bbclass: save original package name If we can get the original package name when reading package infos in toaster.bbclass, we save it for proper referincing in the toater ui. Signed-off-by: Alexandru DAMIAN Signed-off-by: Richard Purdie --- meta/classes/toaster.bbclass | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta') diff --git a/meta/classes/toaster.bbclass b/meta/classes/toaster.bbclass index 7c404b9e65..eed30d4b23 100644 --- a/meta/classes/toaster.bbclass +++ b/meta/classes/toaster.bbclass @@ -94,11 +94,15 @@ python toaster_layerinfo_dumpdata() { def _toaster_load_pkgdatafile(dirpath, filepath): import json + import re pkgdata = {} with open(os.path.join(dirpath, filepath), "r") as fin: for line in fin: try: kn, kv = line.strip().split(": ", 1) + m = re.match(r"^PKG_([^A-Z:]*)", kn) + if m: + pkgdata['OPKGN'] = m.group(1) kn = "_".join([x for x in kn.split("_") if x.isupper()]) pkgdata[kn] = kv.strip() if kn == 'FILES_INFO': -- cgit 1.2.3-korg