diff options
Diffstat (limited to 'scripts/lib/bsp/engine.py')
| -rw-r--r-- | scripts/lib/bsp/engine.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py index 85f095ebcb..760efc7a60 100644 --- a/scripts/lib/bsp/engine.py +++ b/scripts/lib/bsp/engine.py | |||
| @@ -1547,11 +1547,13 @@ def yocto_common_create(machine, target, scripts_path, layer_output_dir, codedum | |||
| 1547 | if properties_file: | 1547 | if properties_file: |
| 1548 | try: | 1548 | try: |
| 1549 | infile = open(properties_file, "r") | 1549 | infile = open(properties_file, "r") |
| 1550 | properties = json.load(infile) | ||
| 1550 | except IOError: | 1551 | except IOError: |
| 1551 | print("Couldn't open properties file %s for reading, exiting" % properties_file) | 1552 | print("Couldn't open properties file %s for reading, exiting" % properties_file) |
| 1552 | sys.exit(1) | 1553 | sys.exit(1) |
| 1553 | 1554 | except ValueError: | |
| 1554 | properties = json.load(infile) | 1555 | print("Wrong format on properties file %s, exiting" % properties_file) |
| 1556 | sys.exit(1) | ||
| 1555 | 1557 | ||
| 1556 | if properties_str and not properties: | 1558 | if properties_str and not properties: |
| 1557 | properties = json.loads(properties_str) | 1559 | properties = json.loads(properties_str) |
