summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/bsp/engine.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py
index ac5058ca1f..8d47bbfdcd 100644
--- a/scripts/lib/bsp/engine.py
+++ b/scripts/lib/bsp/engine.py
@@ -1445,6 +1445,10 @@ def yocto_bsp_list_property_values(arch, property, scripts_path, properties_file
1445 gen_fn = input_line.props["gen"] 1445 gen_fn = input_line.props["gen"]
1446 if nested_properties: 1446 if nested_properties:
1447 context["filename"] = nested_properties[0] 1447 context["filename"] = nested_properties[0]
1448 try:
1449 context["branches_base"] = input_line.props["branches_base"]
1450 except KeyError:
1451 context["branches_base"] = None
1448 values_list = input_line.gen_choices_list(context, False) 1452 values_list = input_line.gen_choices_list(context, False)
1449 except KeyError: 1453 except KeyError:
1450 for choice in input_line.choices: 1454 for choice in input_line.choices: