blob: 22210d5bfa0207ba75279f68001394ac682c7001 [file] [log] [blame]
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +02001#!/usr/bin/env python
2
3# (C) 2013 by Katerina Barone-Adesi <kat.obsc@gmail.com>
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>
16
17
18# Most systems won't be able to use these, so they're separated out
19nitb_e1_configs = [
20 "doc/examples/osmo-nitb/bs11/openbsc-2bts-2trx.cfg",
21 "doc/examples/osmo-nitb/bs11/openbsc-1bts-2trx-hopping.cfg",
22 "doc/examples/osmo-nitb/bs11/openbsc-1bts-2trx.cfg",
23 "doc/examples/osmo-nitb/bs11/openbsc.cfg",
24 "doc/examples/osmo-nitb/nokia/openbsc_nokia_3trx.cfg",
25 "doc/examples/osmo-nitb/nanobts/openbsc-multitrx.cfg",
26 "doc/examples/osmo-nitb/rbs2308/openbsc.cfg"
27]
28
29
30app_configs = {
31 "osmo-bsc": ["doc/examples/osmo-bsc/osmo-bsc.cfg"],
32 "nat": ["doc/examples/osmo-bsc_nat/osmo-bsc_nat.cfg"],
Holger Hans Peter Freyther925504b2015-09-24 10:21:40 +020033 "gbproxy": ["doc/examples/osmo-gbproxy/osmo-gbproxy.cfg",
34 "doc/examples/osmo-gbproxy/osmo-gbproxy-legacy.cfg"],
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020035 "sgsn": ["doc/examples/osmo-sgsn/osmo-sgsn.cfg"],
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020036 "msc": ["doc/examples/osmo-msc/osmo-msc.cfg"],
Neels Hofmeyr720372e2015-12-14 11:29:55 +010037 "gtphub": ["doc/examples/osmo-gtphub/osmo-gtphub-1iface.cfg"]
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020038}
39
40
41apps = [(4242, "src/osmo-bsc/osmo-bsc", "OsmoBSC", "osmo-bsc"),
42 (4244, "src/osmo-bsc_nat/osmo-bsc_nat", "OsmoBSCNAT", "nat"),
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020043 (4246, "src/gprs/osmo-gbproxy", "OsmoGbProxy", "gbproxy"),
44 (4245, "src/gprs/osmo-sgsn", "OsmoSGSN", "sgsn"),
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020045 (4254, "src/osmo-msc/osmo-msc", "OsmoMSC", "msc"),
Holger Hans Peter Freytherda5359f2015-12-14 15:24:50 +010046 (4253, "src/gprs/osmo-gtphub", "OsmoGTPhub", "gtphub")
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020047 ]
48
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020049vty_command = ["./src/osmo-msc/osmo-msc", "-c",
50 "doc/examples/osmo-msc/osmo-msc.cfg"]
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020051
Neels Hofmeyr979cd262017-07-19 16:48:42 +020052vty_app = apps[4] # reference apps[] entry for osmo-msc