summaryrefslogtreecommitdiff
path: root/rtems_spec_to_x.py
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-05-06 12:44:23 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-05-28 10:38:22 +0200
commit31a305f1d26256c5439d1dd552a4136848e841f0 (patch)
treef8c6584f4ec5ca2c98e94476da874fe066519a8d /rtems_spec_to_x.py
parentd9559b23f02f3e5e699334ea88f2fdae290c485c (diff)
spec: Add some interface items
Diffstat (limited to 'rtems_spec_to_x.py')
-rwxr-xr-xrtems_spec_to_x.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtems_spec_to_x.py b/rtems_spec_to_x.py
index 1024c0d0..348fd143 100755
--- a/rtems_spec_to_x.py
+++ b/rtems_spec_to_x.py
@@ -34,6 +34,7 @@ import rtemsqual.applconfig
import rtemsqual.build
from rtemsqual.items import ItemCache
import rtemsqual.glossary
+import rtemsqual.interface
import rtemsqual.util
import rtemsqual.validation
@@ -91,6 +92,7 @@ def main() -> None:
item_cache = ItemCache(config["spec"])
rtemsqual.glossary.generate(config["glossary"], item_cache)
rtemsqual.applconfig.generate(config["appl-config"], item_cache)
+ rtemsqual.interface.generate(config["interface"], item_cache)
rtemsqual.validation.generate(config["validation"], item_cache)
_run_pre_qualified_only_build(config["build"], item_cache)
_run_pre_qualified_doxygen(config["build"])