summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-04-30 14:57:18 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-20 14:38:16 +0100
commitdaf48c00c2535b3bd51e712d9bcb9160ba0801d7 (patch)
treefa13573d77302d81a230edc2126f7bc91435d637 /scripts
parent95aebbe1193a47fcfa8b6550f957e492912cb02a (diff)
downloadpoky-daf48c00c2535b3bd51e712d9bcb9160ba0801d7.tar.gz
wic: change expand behaviour to match docs
The documentation says that --expand takes a comma-separated list of partition:size pairs, but the code was splitting on hyphens. Hyphens are not a transitional separator for a list of items, so change the code to reflect the documentation. (From OE-Core rev: 6d86d126121cd15c7e9832b24106332ab439beeb) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/wic2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/wic b/scripts/wic
index b4b7212cfa..a3c0f731d9 100755
--- a/scripts/wic
+++ b/scripts/wic
@@ -426,7 +426,7 @@ def expandtype(rules):
426 if rules == 'auto': 426 if rules == 'auto':
427 return {} 427 return {}
428 result = {} 428 result = {}
429 for rule in rules.split('-'): 429 for rule in rules.split(','):
430 try: 430 try:
431 part, size = rule.split(':') 431 part, size = rule.split(':')
432 except ValueError: 432 except ValueError: