From 36f258ee6e60c26fd44b9bc71c318363cec71f42 Mon Sep 17 00:00:00 2001 From: Tom Zanussi Date: Mon, 11 Aug 2014 20:35:36 -0500 Subject: 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 --- scripts/lib/wic/utils/oe/misc.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'scripts') 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 -- cgit 1.2.3-korg