summaryrefslogtreecommitdiffstats
path: root/rtems_spec_to_x.py
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-03-17 14:28:07 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-03-17 16:32:51 +0100
commit5df0becea0932a3a1b9c7b656dc3fb7049ab801b (patch)
tree17ef9105582e07d1744785645a126d6397259d59 /rtems_spec_to_x.py
parentspec: Add application configuration (diff)
downloadrtems-central-5df0becea0932a3a1b9c7b656dc3fb7049ab801b.tar.bz2
applconfig: Rework
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 9b793916..f8b7125b 100755
--- a/rtems_spec_to_x.py
+++ b/rtems_spec_to_x.py
@@ -27,6 +27,7 @@
import yaml
+import rtemsqual.applconfig
import rtemsqual.items
import rtemsqual.glossary
@@ -37,6 +38,7 @@ def main():
config = yaml.safe_load(out.read())
item_cache = rtemsqual.items.ItemCache(config["spec"])
rtemsqual.glossary.generate(config["glossary"], item_cache)
+ rtemsqual.applconfig.generate(config["appl-config"], item_cache)
if __name__ == "__main__":