From: Tom Zanussi Date: Tue, 12 Aug 2014 01:35:36 +0000 (-0500) Subject: wic: Add utility function for parsing sourceparams X-Git-Tag: 2015-4~1919 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=36f258ee6e60c26fd44b9bc71c318363cec71f42;p=openembedded-core.git wic: Add utility function for parsing sourceparams Parses strings of the form key1=val1[,key2=val2,...] and returns a dict. Also accepts valueless keys i.e. without =. Signed-off-by: Tom Zanussi Signed-off-by: Richard Purdie --- diff --git a/scripts/lib/wic/utils/oe/misc.py b/scripts/lib/wic/utils/oe/misc.py index 87e30411b0..aa9b23582b 100644 --- a/scripts/lib/wic/utils/oe/misc.py +++ b/scripts/lib/wic/utils/oe/misc.py @@ -179,3 +179,26 @@ def get_bitbake_var(key): val = get_line_val(line, key) return val return None + +def parse_sourceparams(sourceparams): + """ + Split sourceparams string of the form key1=val1[,key2=val2,...] + into a dict. Also accepts valueless keys i.e. without =. + + Returns dict of param key/val pairs (note that val may be None). + """ + params_dict = {} + + params = sourceparams.split(',') + if params: + for p in params: + if not p: + continue + if not '=' in p: + key = p + val = None + else: + key, val = p.split('=') + params_dict[key] = val + + return params_dict