diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/toaster.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
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() { | |||
94 | 94 | ||
95 | def _toaster_load_pkgdatafile(dirpath, filepath): | 95 | def _toaster_load_pkgdatafile(dirpath, filepath): |
96 | import json | 96 | import json |
97 | import re | ||
97 | pkgdata = {} | 98 | pkgdata = {} |
98 | with open(os.path.join(dirpath, filepath), "r") as fin: | 99 | with open(os.path.join(dirpath, filepath), "r") as fin: |
99 | for line in fin: | 100 | for line in fin: |
100 | try: | 101 | try: |
101 | kn, kv = line.strip().split(": ", 1) | 102 | kn, kv = line.strip().split(": ", 1) |
103 | m = re.match(r"^PKG_([^A-Z:]*)", kn) | ||
104 | if m: | ||
105 | pkgdata['OPKGN'] = m.group(1) | ||
102 | kn = "_".join([x for x in kn.split("_") if x.isupper()]) | 106 | kn = "_".join([x for x in kn.split("_") if x.isupper()]) |
103 | pkgdata[kn] = kv.strip() | 107 | pkgdata[kn] = kv.strip() |
104 | if kn == 'FILES_INFO': | 108 | if kn == 'FILES_INFO': |