5 Commits
0.3.1 ... 0.3.2

Author SHA1 Message Date
Oliver Smith
062390702c Bump version: 0.3.1.4-22f0 → 0.3.2
Change-Id: Iaca50b640d147f01c2c5adebd6e0853cf7502d86
2025-03-05 11:35:12 +01:00
Pau Espin Pedrol
22f0738935 Add missing required vty go_parent_cb for libosmo-sigtran
This callback is required when configuring SS7 network through VTY.

Change-Id: Ibab25aa1a9ed4d0680fb61999e79b56b9a7d08dc
2025-03-04 16:58:11 +01:00
Pau Espin Pedrol
39515ac59e jenkins.sh: No need to build libosmo-sigtran with doxygen
Change-Id: Ic63fbd92cc6e1a5f784ced2ccb5f998e6cabaf27
2024-12-10 16:56:59 +01:00
Pau Espin Pedrol
fea674ee2d jenkins.sh: Skip building unneeded libosmo-abis
Change-Id: I9e763963f22e7fb425faef3b70b821ebd7e7ce60
2024-12-10 16:25:35 +01:00
Oliver Smith
d5c7fd45b2 contrib/jenkins: libosmo-abis after libosmo-netif
Depends: libosmo-abis I079dc3999de508301dd37ed03e399356a58d3cab
Depends: libosmo-netif I13d6e88158f6d9ce017986283183ee9c2cc68cae
Change-Id: I00f1dc510823d947992c8a5b2ce97a22c322b43b
2024-11-22 13:19:26 +01:00
3 changed files with 16 additions and 3 deletions

View File

@@ -31,9 +31,8 @@ export PKG_CONFIG_PATH="$inst/lib/pkgconfig:$PKG_CONFIG_PATH"
export LD_LIBRARY_PATH="$inst/lib"
export PATH="$inst/bin:$PATH"
osmo-build-dep.sh libosmo-abis
osmo-build-dep.sh libosmo-netif
osmo-build-dep.sh libosmo-sigtran
osmo-build-dep.sh libosmo-netif "" --disable-doxygen
osmo-build-dep.sh libosmo-sigtran "" --disable-doxygen
# Additional configure options and depends
CONFIG=""

12
debian/changelog vendored
View File

@@ -1,3 +1,15 @@
osmo-smlc (0.3.2) unstable; urgency=medium
[ Oliver Smith ]
* contrib/jenkins: libosmo-abis after libosmo-netif
[ Pau Espin Pedrol ]
* jenkins.sh: Skip building unneeded libosmo-abis
* jenkins.sh: No need to build libosmo-sigtran with doxygen
* Add missing required vty go_parent_cb for libosmo-sigtran
-- Oliver Smith <osmith@sysmocom.de> Wed, 05 Mar 2025 11:35:11 +0100
osmo-smlc (0.3.1) unstable; urgency=medium
[ Harald Welte ]

View File

@@ -35,6 +35,7 @@
#include <osmocom/sigtran/xua_msg.h>
#include <osmocom/sigtran/sccp_sap.h>
#include <osmocom/sigtran/osmo_ss7.h>
#include <osmocom/smlc/debug.h>
#include <osmocom/smlc/smlc_data.h>
@@ -170,6 +171,7 @@ static struct vty_app_info vty_info = {
"This is free software: you are free to change and redistribute it.\r\n"
"There is NO WARRANTY, to the extent permitted by law.\r\n",
.version = PACKAGE_VERSION,
.go_parent_cb = osmo_ss7_vty_go_parent,
};
static void signal_handler(int signal)