This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Harald Welte gerrit-no-reply at lists.osmocom.org
Review at  https://gerrit.osmocom.org/4793
STP: Add osmoappdesc.py
Change-Id: I60362d78b5db3ed5bc96c84a8523c391ff7f8125
---
M Makefile.am
A osmoappdesc.py
2 files changed, 13 insertions(+), 1 deletion(-)
  git pull ssh://gerrit.osmocom.org:29418/libosmo-sccp refs/changes/93/4793/1
diff --git a/Makefile.am b/Makefile.am
index d1c3c21..1ac8e11 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,7 +6,7 @@
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = libosmo-sccp.pc libosmo-mtp.pc libosmo-sigtran.pc libosmo-xua.pc
 
-EXTRA_DIST = .version doc/examples/osmo-stp.cfg
+EXTRA_DIST = .version git-version-gen osmoappdesc.py doc/examples/osmo-stp.cfg
 
 @RELMAKE@
 
diff --git a/osmoappdesc.py b/osmoappdesc.py
new file mode 100644
index 0000000..02ccda6
--- /dev/null
+++ b/osmoappdesc.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+
+app_configs = {
+    "osmo-stp": ["doc/examples/osmo-stp.cfg"],
+}
+
+apps = [(4239, "stp/osmo-stp", "OsmoSTP", "osmo-stp"),
+        ]
+
+vty_command = ["./stp/osmo-stp", "-c", "doc/examples/osmo-stp.cfg"]
+
+vty_app = apps[0]
-- 
To view, visit https://gerrit.osmocom.org/4793
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I60362d78b5db3ed5bc96c84a8523c391ff7f8125
Gerrit-PatchSet: 1
Gerrit-Project: libosmo-sccp
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>