summaryrefslogtreecommitdiffstats
path: root/rtemsspec/items.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsspec/items.py')
-rw-r--r--rtemsspec/items.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/rtemsspec/items.py b/rtemsspec/items.py
index 1adbcdc7..1bc29dec 100644
--- a/rtemsspec/items.py
+++ b/rtemsspec/items.py
@@ -755,8 +755,9 @@ class ItemCache:
self._load_items(config)
if post_process_load:
post_process_load(self._items)
- self._init_parents()
- self._init_children()
+ if config.get("initialize-links", True):
+ self._init_parents()
+ self._init_children()
spec_root = config["spec-type-root-uid"]
if spec_root:
self._root_type = _gather_spec_refinements(self[spec_root])